.toursHeader {
  --toursHeader-accent: rgba(22, 171, 255, 1);
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 20px 0 12px;
  background: transparent;
}

.profileHeader {
  padding-top: 0 !important;
}

.toursHeader__inner {
  max-width: 1372px;
  height: 88px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 1);
  border-radius: 12px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.myProfile {
  padding-top: 0;
}

.toursHeader__left {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
  flex: 1 1 auto;
}

.toursHeader__logo {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}

.toursHeader__logo img {
  width: 60px;
  height: 60px;
  display: block;
}

.toursHeader__tabs {
  display: inline-flex;
  align-items: center;
  justify-content: left;
  gap: 34px;
  flex: 1 1 auto;
  min-width: 0;
}

.toursHeader__tab {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.92);
  font-weight: 300;
  font-style: Light;
  font-size: 22px;
  font-family: Inter;
  position: relative;
  padding: 0.35rem 0.2rem;
  letter-spacing: 0.01em;
  leading-trim: NONE;
  line-height: 100%;
}

.toursHeader__tab:hover {
  color: rgba(22, 171, 255, 1);
}

.toursHeader__tab--active {
  font-weight: 600;
  color: rgba(22, 171, 255, 1);
  font-style: Semi Bold;

}

.toursHeader__tab--active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.65rem;
  width: 60px;
  height: 2px;
  background: var(--toursHeader-accent);
  border-radius: 999px;
}

.toursHeader__right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.toursHeader__actions {
  display: inline-flex;
  align-items: center;
  gap: 36px;
}

.toursHeader__menuWrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.toursHeader__pill {
  appearance: none;
  border: none;
  background: var(--toursHeader-accent);
  color: rgba(255, 255, 255, 1);
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.18);
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}

.toursHeader__pill:hover {
  filter: saturate(1.02) brightness(0.98);
  transform: translateY(-1px);
}

.toursHeader__pill:active {
  transform: translateY(0px) scale(0.99);
}

.toursHeader__pill:focus-visible {
  outline: 3px solid rgba(22, 171, 255, 0.35);
  outline-offset: 3px;
}

.toursHeader__pill--user {
  padding: 0 12px;
  min-width: 60px;
}

.toursHeader__pillText {
  line-height: 1;
}

.toursHeader__caret {
  color: rgba(255, 255, 255, 1);
}

.toursHeader__userIcon {
  width: 18px;
  height: 18px;
}

.toursHeader__iconBtn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--toursHeader-accent);
  border-radius: 999px;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.toursHeader__iconBtn:hover {
  background: rgba(22, 171, 255, 0.12);
  transform: translateY(-1px);
}

.toursHeader__iconBtn:active {
  transform: translateY(0px);
}

.toursHeader__iconBtn:focus-visible {
  outline: 2px solid rgba(22, 171, 255, 0.55);
  outline-offset: 2px;
}

.toursHeader__bell {
  color: var(--toursHeader-accent);
}

.toursHeader__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 80;
}

.toursHeader__menuItem,
.toursHeader__menuLink,
.toursHeader__menuLogout {
  appearance: none;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.9);
  font-weight: 800;
  padding: 10px 10px;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
}

.toursHeader__menuItem:hover,
.toursHeader__menuLink:hover {
  background: rgba(22, 171, 255, 0.12);
}

.toursHeader__menuItem--active {
  background: rgba(22, 171, 255, 0.16);
}

.toursHeader__menuDivider {
  height: 1px;
  background: rgba(15, 23, 42, 0.12);
  margin: 2px 4px;
}

.toursHeader__menuLogout {
  color: rgba(239, 68, 68, 1);
}

.toursHeader__menuLogout:hover {
  background: rgba(239, 68, 68, 0.12);
}

.toursHeader__hamburger {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(22, 171, 255, 0.22);
  background: rgba(22, 171, 255, 0.08);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, background 160ms ease;
}

.toursHeader__hamburger:hover {
  transform: translateY(-1px);
  background: rgba(22, 171, 255, 0.12);
}

.toursHeader__hamburger:active {
  transform: translateY(0px) scale(0.98);
}

.toursHeader__hamburger:focus-visible {
  outline: 2px solid rgba(22, 171, 255, 0.55);
  outline-offset: 2px;
}

.toursHeader__hamburgerIcon {
  position: relative;
  width: 20px;
  height: 2px;
  background: rgba(22, 171, 255, 1);
  border-radius: 999px;
  display: block;
}

.toursHeader__hamburgerIcon::before,
.toursHeader__hamburgerIcon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: rgba(22, 171, 255, 1);
  border-radius: 999px;
}

.toursHeader__hamburgerIcon::before {
  top: -6px;
}

.toursHeader__hamburgerIcon::after {
  top: 6px;
}

.toursHeader__drawerOverlay {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.toursHeader__drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(22rem, 86vw);
  z-index: 80;
  background: rgba(255, 255, 255, 1);
  border-left: 1px solid rgba(15, 23, 42, 0.12);
  transform: translateX(102%);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: calc(env(safe-area-inset-top) + 1rem) 1rem 1rem;
}

.toursHeader__drawer--open {
  transform: translateX(0%);
}

.toursHeader__drawerHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.toursHeader__drawerBrand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.9);
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.toursHeader__drawerBrand img {
  border-radius: 14px;
  background: rgba(22, 171, 255, 0.08);
  padding: 6px;
}

.toursHeader__drawerClose {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.8);
  font-size: 1.7rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.toursHeader__drawerClose:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.1);
}

.toursHeader__drawerNav {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.toursHeader__drawerLink {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.92);
  font-weight: 900;
  padding: 0.85rem 0.9rem;
  border-radius: 0.95rem;
  background: rgba(22, 171, 255, 0.08);
  border: 1px solid rgba(22, 171, 255, 0.14);
  transition: background 160ms ease, transform 160ms ease;
}

.toursHeader__drawerLink:hover {
  background: rgba(22, 171, 255, 0.12);
  transform: translateY(-1px);
}

.toursHeader__drawerFooter {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.toursHeader__drawerUser {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.toursHeader__drawerIdentity {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.8);
  padding: 0.5rem 0.1rem 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.toursHeader__drawerBtn {
  height: 44px;
  border-radius: 0.95rem;
  border: 1px solid rgba(239, 68, 68, 0.42);
  background: rgba(239, 68, 68, 0.12);
  color: rgba(185, 28, 28, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.toursHeader__drawerBtn:hover {
  transform: translateY(-1px);
  background: rgba(239, 68, 68, 0.16);
}



@media (max-width: 920px) {
  .toursHeader__tabs,
  .toursHeader__actions {
    display: none;
  }

  .toursHeader__hamburger {
    display: inline-flex;
  }

  .toursHeader__inner {
    padding: 0 16px;
    height: 76px;
  }

  .toursHeader__logo,
  .toursHeader__logo img {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 921px) {
  .toursHeader__drawer,
  .toursHeader__drawerOverlay {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .toursHeader__tab,
  .toursHeader__pill,
  .toursHeader__iconBtn,
  .toursHeader__hamburger,
  .toursHeader__drawer,
  .toursHeader__drawerLink,
  .toursHeader__drawerBtn {
    transition: none !important;
  }
}
