header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.navbar {
  /* background-color: #191919 ; */
  background-color: #000000;
  padding: 0;
  width: 100%;
  justify-content: space-evenly;
}

.navbar .head-wrapper {
  padding: 0 clamp(80px, 7.5vw, 150px);
  --bs-gutter-x: 0;
}

.navbar .head-wrapper,
#navbarNavDropdown {
  padding: 0 clamp(80px, 7.5vw, 150px);
}

.navbar-brand img {
  height: 50px;
  width: 144px;
  object-fit: contain;
  margin: 9px 0 15px 0;
}


/* mobile style */
#mobileProgressTrack {
  position: fixed;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2); /* ✅ 浅色 track */
  z-index: 9999;
}

#mobileProgressBar {
  height: 100%;
  width: 0%;
  background: #00C0E1;
  transition: width 0.1s ease;
}

@media (min-width: 1025px) {
  #mobileProgressTrack {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar .head-wrapper,
  #navbarNavDropdown {
    padding: 2px 20px 8px 20px;
  }

  .navbar-brand img {
    height: 34px;
    width: auto;
    margin: 8px 0;
  }
}

.navbar-brand .ar2024 {
  font-size: 14px;
  color: #ffffff;
}

.header-end div {
  height: 27.5px;
}

.sm-divider {
  background-color: #e1e1e1;
  width: 1px;
  height: 100%;
  margin: 0 18px;
}

.navbar-toggler {
  align-self: center;
  border: none;
  outline: none;
  background: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-icon,
.nav-icon img,
.nav-icon span,
.menu-btn,
#MenuToClose,
#hamburgerToX span,
.share-trigger {
  transition: all 0.25s ease-in-out !important;
}

.nav-icon img {
  max-height: 16px;
  margin: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.nav-icon:hover img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.nav-icon span {
  font-size: 17px;
  color: #ffffff;
  margin-left: 9px;
  transition: color 0.3s ease-in;
}

.nav-icon:hover span {
  color: #ffffff;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-left: -9px;
  cursor: pointer;
}

#navbarNavDropdown {
  margin: 48px 0px;
  overflow-y: scroll;
  overflow-x: hidden;
  height: calc(100vh - 75px - 48px - 48px);
  height: calc(100dvh - 75px - 48px - 48px);
  padding-bottom: 10vh;
}

@media (max-width: 768px) {
  .header-end {
    padding-bottom: 21px;
  }

  #navbarNavDropdown {
    margin: 24px 16px;
    height: calc(100vh - 85px - 24px - 24px);
  }

  #navbarNavDropdown .navbar-nav {
    padding-left: 0;
  }
}

#navbarNavDropdown::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
  position: fixed;
  right: 0px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}

#navbarNavDropdown::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

#navbarNavDropdown::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

#navbarNavDropdown::-webkit-scrollbar-corner {
  background-color: transparent;
}

#navbarNavDropdown > * {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#navbarNavDropdown ul,
#navbarNavDropdown ul li {
  list-style-type: none;
}

#navbarNavDropdown ul li ul li {
  list-style-type: "• ";
  line-height: 24px;
  color: rgba(255, 255, 255, 0.85);
}

#navbarNavDropdown ul li ul li::marker {
  font-size: 1.4em;
}

#navbarNavDropdown ul {
  padding-left: 0px;
}

#navbarNavDropdown ul ul {
  padding-left: 20px;
}

#navbarNavDropdown .nav-link {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 0;
  padding-bottom: 6px;
}

#navbarNavDropdown .navbar-nav > .nav-wrapper > li > .nav-link {
  padding-left: 15px;
  text-indent: -15px;
}

#navbarNavDropdown .nav-link:hover {
  color: #c8102e;
}

#navbarNavDropdown h3 {
  font-size: clamp(27px, 2.2vw, 36px);
  color: rgba(255, 255, 255, 1);
}

#navbarNavDropdown .dm-serif {
  font-family: "DM Serif Display";
}

#navbarNavDropdown .nav-title {
  color: #00c0e1;
  font-size: clamp(18px, 2.4vw, 24px);
}

#navbarNavDropdown .nav-item .read-more {
  font-size: clamp(14px, 0.8rem, 14px);
  margin-bottom: 12px;
  color: #00c0e1;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

#navbarNavDropdown .nav-item .read-more:hover {
  color: #00c0e1;
}

#navbarNavDropdown .nav-item .read-more:after {
  content: "";
  background: url("../image/read-more-arr-inner.svg") no-repeat;
  background-size: contain;
  width: 10px;
  height: 6px;
  display: inline-block;
  margin-left: 6px;
  background-position: center;
  transition: transform 0.3s ease;
}

#navbarNavDropdown .nav-item .read-more:hover:after {
  transform: translateX(5px);
}

#hamburgerToX {
  width: 18px;
  height: 12.5px;
  position: relative;
  margin-right: 12px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: inline-block;
}

#hamburgerToX span {
  display: block;
  position: absolute;
  height: 1.2px;
  width: 100%;
  background: #ffffff;
  border-radius: 0.6px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition:
    transform 0.25s ease-in-out,
    top 0.25s ease-in-out,
    width 0.25s ease-in-out;
}

.menu-btn:hover #hamburgerToX span {
  background: #ffffff;
}

.menu-btn:hover #MenuToClose {
  color: #ffffff;
}

/* When menu is open (hamburger becomes X) */
#hamburgerToX.open span {
  background: #ffffff;
}

.navbar-toggler[aria-expanded="true"] #MenuToClose {
  color: #ffffff;
}

#hamburgerToX span:nth-child(1) {
  top: 0;
}

#hamburgerToX span:nth-child(2),
#hamburgerToX span:nth-child(3) {
  top: 5px;
  background: #ffffff;
}

#hamburgerToX span:nth-child(4) {
  top: 9.8px;
}

#hamburgerToX.open span:nth-child(1) {
  top: 5px;
  width: 0%;
  left: 50%;
}

#hamburgerToX.open span:nth-child(2) {
  transform: rotate(45deg);
}

#hamburgerToX.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#hamburgerToX.open span:nth-child(4) {
  top: 5px;
  width: 0%;
  left: 50%;
}

#MenuToClose {
  font-size: 17px;
  color: #ffffff;
  transition: color 0.3s ease-in;
}

/* ══════════════════════════════════════════════════════════
   DESKTOP ONLY — 70% opacity + hover to 100%
   ══════════════════════════════════════════════════════════ */

@media (min-width: 1025px) {
  /* Download icon */
  .nav-icon img {
    opacity: 0.7;
    transition: opacity 0.3s ease-in;
  }

  .nav-icon:hover img {
    opacity: 1;
  }

  /* Download text */
  .nav-icon span {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease-in;
  }

  .nav-icon:hover span {
    color: #ffffff;
  }

  /* Hamburger lines */
  #hamburgerToX span {
    background: rgba(255, 255, 255, 0.7);
    transition:
      transform 0.25s ease-in-out,
      top 0.25s ease-in-out,
      width 0.25s ease-in-out,
      background 0.3s ease-in;
  }

  /* Middle lines darker */
  #hamburgerToX span:nth-child(2),
  #hamburgerToX span:nth-child(3) {
    background: rgba(255, 255, 255, 0.5);
  }

  .menu-btn:hover #hamburgerToX span {
    background: #ffffff;
  }

  .menu-btn:hover #hamburgerToX span:nth-child(2),
  .menu-btn:hover #hamburgerToX span:nth-child(3) {
    background: #ffffff;
  }

  /* Menu text */
  #MenuToClose {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease-in;
  }

  .menu-btn:hover #MenuToClose {
    color: #ffffff;
  }

  /* Open state — full white */
  #hamburgerToX.open span {
    background: #ffffff;
  }

  .navbar-toggler[aria-expanded="true"] #MenuToClose {
    color: #ffffff;
  }
}

.ar-title {
  position: absolute;
  z-index: 101;
  height: 75px;
  top: 0;
  left: 0;
  text-align: center;
  pointer-events: none;
  color: #ffffff;
}

/* Share Dropdown - Yet to clean up */
.share-option-hld.horizontal.inline {
  position: relative;
  display: inline-block;
}

.share-option-hld.horizontal.grey {
  top: 8px;
  left: 30px;
}

.share-option-hld.horizontal.white {
  top: 5px;
  left: 30px;
}

.share-option-hld.horizontal.block {
  display: block;
  margin: 10px 0;
  left: 0;
}

.share-option-hld.keppelite {
  top: 5px;
}

/* Share icon */
.share-option-hld .share-trigger {
  background: url("../image/share-icon3.svg") center no-repeat;
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 102;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 106;
  background-color: transparent;
  opacity: 0.7 !important;
  transition: opacity 0.3s ease-in;
}

.share-option-hld .share-trigger:hover {
  opacity: 1 !important;
}

.share-option-hld .share-trigger.active {
  background: url("../image/share-icon-close.svg") center no-repeat;
  height: 30px;
  width: 30px;
  z-index: 106;
}

.share-option-hld-edm {
  position: absolute;
  right: 40px;
  top: -150px;
}

.share-option-hld.mobile {
  position: relative;
  z-index: 102;
}

.wechat-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 106;
  display: none;
}

.wechat-popup.mobile {
  background: rgba(0, 0, 0, 0.8);
  width: 300px;
  height: 300px;
}

.wechat-popup.desktop {
  background: #ffffff;
  border: 1px solid #000;
  box-sizing: border-box;
  padding: 20px;
  width: 400px;
  height: 375px;
}

.wechat-popup .wechat-close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
}

.wechat-popup.desktop .wechat-close {
  color: #000000;
}

.wechat-popup.desktop .wechat-qr-instructions {
  position: absolute;
  bottom: 20%;
}

.top .navi .download-button .wechat-popup img.qr-img {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 240px !important;
  width: 100%;
  height: 240px;
  display: none;
}

.top .navi .download-button .wechat-popup img.qr-img.active {
  display: block;
}

.wechat-popup.desktop .loader {
  position: absolute;
  top: 170px;
  left: 187.5px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #da2128;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
  display: block;
}

.wechat-popup.desktop .loader.inactive {
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.wechat-url {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.wechat-url .wechat-heading {
  color: #ffffff;
  margin-bottom: 15px;
}

.wechat-url input {
  height: 35px;
  width: 80%;
}

.wechat-url .wechat-copy-open {
  box-sizing: border-box;
  background: #da2128;
  color: #ffffff;
  width: 70%;
  padding: 10px;
  margin: 30px auto 0 auto;
  line-height: 150%;
  cursor: pointer;
  outline: none;
  font-weight: bold;
}

.wechat-url .wechat-copy-open:active {
  position: relative;
  top: 1px;
}

.share-option-hld-edm .anchor {
  color: #da2128;
  margin-left: 20px;
  line-height: 20px;
}

.share-option-hld-edm .anchor span {
  display: inline-block;
  height: 20px;
  width: 20px;
  vertical-align: text-bottom;
  margin-right: 5px;
}

/* .share-option-hld-edm .anchor .icon-mail { background: url(../image/mail-icon.jpg) no-repeat center; } */
.share-option-hld .anchor .icon-share {
  background: url(../image/share-icon3.svg) no-repeat;
}

.share-option-hld ul {
  position: absolute;
  top: 54px;
  background: #ffffff;
  z-index: 105;
  height: 150px;
  border-radius: 0 0 20px 20px;
  display: none;
  padding: 0;
}


@media (max-width: 768px) {
  .share-option-hld ul {
    top: 42px;
  }
}


/* ══════════════════════════════════════════
   SHARE DROPDOWN — HORIZONTAL
   ══════════════════════════════════════════ */
.share-option-hld.horizontal ul {
  position: absolute;
  top: 0;
  left: 22px;
  background: #ffffff;
  z-index: 101;
  height: 30px;
  width: 220px;
  border-radius: 0 20px 20px 0;
  display: none;
  padding-left: 15px;
}

.share-option-hld.horizontal.grey ul {
  background: #f1f1f1;
}

.share-option-hld.horizontal.active ul {
  width: 200px;
}

.share-option-hld.mobile ul {
  position: relative;
  background: #ffffff;
  z-index: 103;
  height: 75px;
}

.share-option-hld ul li {
  list-style: none;
  padding: 0;
  margin-top: -5px;
}

.share-option-hld.horizontal ul li {
  display: inline-block;
}

.share-option-hld ul li:first-child {
  padding-top: 20px;
}

.share-option-hld.horizontal ul li:first-child {
  padding-top: 0;
}

.share-option-hld.mobile ul li:first-child {
  padding-left: 20px;
}

.share-option-hld ul li:last-child {
  padding-bottom: 10px;
}

.share-option-hld ul .share {
  display: inline-block;
  height: 25px;
  width: 30px;
  margin-top: 5px;
}

.share-option-hld.horizontal ul .share {
  margin-top: 0;
}

/* ══════════════════════════════════════════
   SHARE DROPDOWN — VERTICAL
   ══════════════════════════════════════════ */
.share-option-hld.vertical {
  position: relative;
  display: inline-block;
  z-index: 106;
}

.share-option-hld.vertical .share-trigger {
  position: relative;
  z-index: 107; 
  background-color: transparent !important;
}

.share-option-hld.vertical.active .share-trigger {
  background-color: #ffffff !important;
  opacity: 1 !important;
}


.share-option-hld.vertical ul {
  position: absolute !important;
  top: 15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  border-radius: 0 0 15px 15px !important;
  height: auto !important;
  width: 30px !important;
  display: none;
  padding: 14px 0 8px 0 !important; 
  z-index: 106 !important; 
  margin: 0 !important;
}

/* li */
.share-option-hld.vertical ul li {
  display: flex !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.share-option-hld.vertical ul li:first-child {
  padding-top: 4px !important;
}

.share-option-hld.vertical ul li:last-child {
  padding-bottom: 4px !important;
}


.share-option-hld ul .icon-insta {
  background: url(../image/social-share-icons_black.webp) no-repeat;
  background-position: 0px 0px;
  background-size: 165px;
}

.share-option-hld ul .icon-fb {
  background: url(../image/social-share-icons_black.webp) no-repeat;
  background-position: -30px 0px;
  background-size: 150px;
}

.share-option-hld ul .icon-li {
  background: url(../image/social-share-icons_black.webp) no-repeat;
  background-position: -60px 0px;
  background-size: 150px;
}

.share-option-hld ul .icon-wa {
  background: url(../image/social-share-icons_black.webp) no-repeat;
  background-position: -121px 0px;
  background-size: 150px;
}

.share-option-hld ul .icon-wc {
  background: url(../image/social-share-icons_black.webp) no-repeat;
  background-position: -90px 0px;
  background-size: 150px;
}

.share-option-hld ul .icon-go {
  background: url(../image/social-share-icons_black.webp) no-repeat;
  background-position: -52px 0;
}

.share-option-hld ul li a.share {
  transition: all 0.3s;
}

.share-option-hld ul li a.share:hover {
  opacity: 0.5;
}

/* ══════════════════════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════════════════════ */

.breadcrumb-wrapper {
  background-color: #ffffff;
  border-bottom: 1px solid #b4b4b4;
}

.breadcrumb-wrapper .breadcrumb {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 12px clamp(80px, 7.5vw, 150px) 8px;
  background-color: transparent;
  font-size: 14px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .breadcrumb-wrapper .breadcrumb {
    padding: 12px 20px 6px 20px;
    font-size: 13px;
    margin-bottom: 0;
  }
}

.breadcrumb-wrapper .breadcrumb-item a {
  color: #888888;
  text-decoration: none;
}

.breadcrumb-wrapper .breadcrumb-item a:hover {
  color: #da2128;
}

.breadcrumb-wrapper .breadcrumb-item.active {
  color: #333333;
  font-weight: 500;
}

.breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #cccccc;
  padding-right: 5px;
}
