.sticky-wrapper {
  position: relative;
  z-index: 1001;
  background: none; 
  border: 0;
  box-shadow: none;
}

.th-header.header-layout6 {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: #15213a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* 防止布局抖动 */
body.with-fixed-header {
  padding-top: 0;
}

/* Desktop header 内部保持透明，吃父级背景 */
.th-header.header-layout6 .menu-area {
  background: transparent;
}

/* ================================
   Desktop Menu
================================ */
.main-menu > ul {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu a {
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
}

.main-menu a:hover {
  color: var(--hw-orange) !important;   /* ✅ 橙色 hover */
}

/* Hide menu on mobile */
@media (max-width: 991.98px) {
  .main-menu {
    display: none !important;
  }
}

/* =========================================================
   Mobile Menu (Overlay + Panel)
========================================================= */
.th-menu-wrapper {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.th-menu-wrapper.th-body-visible {
  opacity: 1;
  visibility: visible;
}

.th-menu-wrapper .th-menu-area {
  width: 100%;
  max-width: 220px;
  background-color: #f2f4f7;
  border-right: 1px solid #dde2ea;
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 12px;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.th-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0 18px 24px;
}

.th-mobile-menu ul li {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.12);
}

.th-menu-close {
  color: #6b7280;
  font-size: 28px;
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
}

.th-menu-close:hover {
  opacity: 0.8;
}

.th-menu-wrapper .mobile-logo {
  margin-bottom: 28px;
  text-align: left;
}

.th-menu-wrapper .mobile-logo img {
  width: 140px;
  height: auto;
}

/* =========================================================
   Header Buttons / Icons
========================================================= */
.th-menu-toggle {
  width: 47px;
  height: 47px;
  background-color: var(--hw-orange);
  color: #ffffff !important;
  border: none;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  padding: 0;
  transition: background 0.3s ease;
}

.th-menu-toggle:hover {
  background-color: var(--hw-orange-soft);
  color: #111;
}

.hw-header-btn {
  background-color: var(--hw-orange);
  padding: 10px 32px;
  color: #ffffff;
}

.hw-header-btn:hover {
  background: var(--hw-orange-soft);
  color: #111111;
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(255, 79, 0, 0.35);
}

.btn-header-mobile {
  display: inline-block;
}

@media (min-width: 992px) {
  .btn-header-mobile {
    display: none !important;
  }
}

/* =========================================================
   All Header Nav Links (Desktop + Mobile + BOOK NOW)
========================================================= */
.hw-nav-link {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
}

.hw-nav-link:hover {
  color: var(--hw-orange);
}

.hw-nav-link--book {
  font-weight: 600;
}

.th-mobile-menu .hw-nav-link {
  font-size: 15px;
  color: #111827 !important;
}

/* 让按钮里的链接撑满点击区域 */
.hw-btn a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.th-mobile-menu ul li a:before {
  content: none !important;
}

/* ================================
   Desktop Header – spacing优化
   仅 >=992px 生效
================================ */
@media (min-width: 992px) {
  .th-header .menu-area {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }

  .th-header .menu-area .row {
    align-items: center;
    justify-content: flex-start;
    column-gap: 40px;
  }

  .th-header .header-logo img {
    height: 64px;
    width: auto;
  }

  .main-menu > ul {
    gap: 32px;
  }

  .main-menu > ul > li > a {
    padding: 6px 0;
  }

  .header-layout6 .header-button {
    display: flex;
    align-items: center;
  }
}

/* ================================
   Mobile spacing
================================ */
@media (max-width: 991.98px) {
  .th-menu-wrapper .mobile-logo {
    padding-left: 12px;
    margin-bottom: 28px;
  }

  .th-menu-wrapper .mobile-logo img {
    width: 140px;
    height: auto;
    display: block;
  }

  .th-mobile-menu ul {
    padding-left: 18px;
    padding-right: 0;
  }

  .th-menu-wrapper .th-menu-area {
    padding-right: 12px;
  }
}
