/* ---- Header layout ---- */
.nt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffffcf;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
}
.nt-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
}
.nt-header__left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.nt-header__center {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.nt-header__right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nt-site-title {
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  color: #111;
}

.nt-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nt-menu > li > a,
.nt-right-menu-item,
.nt-right-menu-item:visited,
.nt-menu > li > a:visited {
  text-decoration: none;
  color: #222;
  padding: 8px 4px;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
}
.nt-menu > li > a:hover,
.nt-right-menu-item:hover,
.nt-right-menu-item:focus,
.nt-menu > li > a:focus {
  color: #ff5a3c;
}

/* Phone + Button */
.nt-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  text-decoration: none;
}
.nt-call:hover {
  color: #ff5a3c;
}
.btn-login {
  display: inline-flex;
  align-items: center;
  padding: 10px 32px;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
  text-decoration: none;
}
.btn-login:hover {
  border-color: #ff5a3c;
  color: #ff5a3c;
}

/* Burger (hidden on desktop) */
.nt-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  margin-left: auto;
  cursor: pointer;
}
.nt-burger span {
  display: block;
  height: 2px;
  background: #111;
  margin: 6px 0;
  transition: 0.2s;
}

.nt-header img {
  width: 200px;
}

/* By default, hide the menu login item on desktop */
.nt-menu-login-mobile {
    display: none;
}

@media (min-width:992px){
	.menu-item-363{
		display:none;
	}
}

/* Responsive */
@media (max-width: 992px) {
  .nt-header img {
    width: 150px;
  }
	.menu-item-363{
		display:block;
	}
  .nt-header__right .nt-login.btn-login {
    padding: 6px 12px !important;
  }
  .nt-header__center .nt-menu li {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .nt-burger {
    display: block;
  }
  .nt-header__center {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #fff;
    border-top: 1px solid #eee;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
  }
  .nt-header__center .nt-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 20px;
    width: 100%;
  }
  .nt-header__center .nt-menu > li > a {
    width: 100%;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 500;
  }

  /* When open */
  .nt-header.is-open .nt-header__center {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    border-bottom: 1px solid #ff5a3c3b;
  }
  /* Optional animation for burger */
  .nt-header.is-open .nt-burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nt-header.is-open .nt-burger span:nth-child(2) {
    opacity: 0;
  }
  .nt-header.is-open .nt-burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
	.nt-menu-login-mobile {
        display: block;
    }

    /* Hide the right-side login button only on mobile */
    .nt-header__right .btn-login {
        display: none;
    }
	.menu-item.nt-menu-login-mobile a {
    background: #ff5a3c;
    border-radius: 500px;
    color: white;
}
	.menu-item.nt-menu-login-mobile a:hover,
	.menu-item.nt-menu-login-mobile a:focus{
		color:white !important;
	}
}
