.glossy-header.abadi-global-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  width: 100%;
  max-width: none;
  align-items: center;
  box-sizing: border-box;
  margin: 0;
}

.abadi-special-header-page header.glossy-header:not(.abadi-global-header) {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
}

.abadi-global-header .abadi-global-header__nav {
  display: none;
  flex: 1 1 auto;
  min-width: 0;
}

.abadi-global-header .abadi-global-header__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(2px, 0.45vw, 7px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.abadi-global-header .abadi-global-header__item {
  margin: 0;
  padding: 0;
}

.abadi-global-header .abadi-global-header__link {
  position: relative;
  display: flex;
  min-width: 52px;
  height: 60px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  padding: 4px 5px 6px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: color 300ms ease, background-color 300ms ease;
}

.abadi-global-header .abadi-global-header__link:hover,
.abadi-global-header .abadi-global-header__link:focus-visible {
  color: #fdba74;
  background-color: rgba(234, 88, 12, 0.15);
  outline: none;
}

.abadi-global-header .abadi-global-header__icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;
  transition: opacity 300ms ease, transform 300ms ease;
}

.abadi-global-header .abadi-global-header__link:hover .abadi-global-header__icon,
.abadi-global-header .abadi-global-header__link:focus-visible .abadi-global-header__icon {
  opacity: 0.86;
  transform: translateY(-1px);
}

.abadi-global-header .abadi-global-header__label {
  display: block;
  color: inherit;
  font-size: clamp(8px, 0.64vw, 10px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.abadi-global-header .abadi-global-header__indicator {
  position: absolute;
  right: 10px;
  bottom: 2px;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 300ms ease, transform 300ms ease;
}

.abadi-global-header .abadi-global-header__item.is-active .abadi-global-header__link {
  color: #fb923c;
  background-color: rgba(234, 88, 12, 0.15);
}

.abadi-global-header .abadi-global-header__item.is-active .abadi-global-header__indicator,
.abadi-global-header .abadi-global-header__link:hover .abadi-global-header__indicator,
.abadi-global-header .abadi-global-header__link:focus-visible .abadi-global-header__indicator {
  opacity: 1;
  transform: scaleX(1);
}

.abadi-global-header.abadi-global-header__drawer-layer {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.abadi-global-header .abadi-global-header__drawer-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
}

.abadi-global-header .abadi-global-header__drawer {
  position: relative;
  width: min(290px, 84vw);
  height: 100%;
  overflow-y: auto;
  padding: 18px 14px;
  background: linear-gradient(to right, #7f1d1d, #ea580c, #7f1d1d);
  box-shadow: 8px 0 24px rgba(0, 0, 0, 0.28);
}

.abadi-global-header .abadi-global-header__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.abadi-global-header .abadi-global-header__drawer-close {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: 700 23px/1 sans-serif;
}

.abadi-global-header .abadi-global-header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.abadi-global-header .abadi-global-header__drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease, background-color 300ms ease;
}

.abadi-global-header .abadi-global-header__drawer-link:hover,
.abadi-global-header .abadi-global-header__drawer-link:focus-visible,
.abadi-global-header .abadi-global-header__drawer-link[aria-current="page"] {
  color: #fdba74;
  background: rgba(234, 88, 12, 0.18);
  outline: none;
}

.abadi-global-header .abadi-global-header__drawer-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .abadi-global-header > div {
    display: flex;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
  }

  .abadi-global-header > div > div:first-child {
    flex: 0 0 auto;
    margin-right: clamp(20px, 1.8vw, 28px);
  }

  .abadi-global-header > div > div:first-child > a > img,
  .abadi-global-header > div > div:first-child > a > noscript > img {
    width: clamp(175px, 13vw, 190px);
    height: auto;
    max-width: none;
    max-height: 74px;
    object-fit: contain;
  }

  .abadi-global-header .abadi-global-header__nav {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    margin-right: clamp(20px, 1.8vw, 28px);
  }

  .abadi-global-header .abadi-global-header__list {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0;
  }

  .abadi-global-header .abadi-global-header__item {
    width: 100%;
    min-width: 0;
  }

  .abadi-global-header .abadi-global-header__link {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .abadi-global-header > div > div:last-child {
    flex: 0 0 auto;
    margin-left: 0;
  }
}

@media (min-width: 1280px) {
  .abadi-global-header .abadi-global-header__label {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .abadi-global-header .abadi-global-header__link,
  .abadi-global-header .abadi-global-header__icon,
  .abadi-global-header .abadi-global-header__indicator,
  .abadi-global-header .abadi-global-header__drawer-link {
    transition: none;
  }
}

/* =========================================================
 * ABADI Global Header — utility compatibility
 * Scope: header component only.
 * Purpose: make WVC/Tailwind utility-based header markup
 * independent from page-specific Home.css.
 * ========================================================= */

.abadi-global-header.fixed {
  position: fixed;
}

.abadi-global-header.top-0 {
  top: 0;
}

.abadi-global-header.w-full {
  width: 100%;
}

.abadi-global-header.flex {
  display: flex;
}

.abadi-global-header.items-center {
  align-items: center;
}

.abadi-global-header.h-16 {
  height: 64px;
}

.abadi-global-header > div {
  box-sizing: border-box;
}

.abadi-global-header > div.w-full {
  width: 100%;
}

.abadi-global-header > div.h-full {
  height: 100%;
}

.abadi-global-header > div.flex {
  display: flex;
}

.abadi-global-header > div.items-center {
  align-items: center;
}

.abadi-global-header > div.justify-between {
  justify-content: space-between;
}

.abadi-global-header > div.gap-8 {
  gap: 2rem;
}

.abadi-global-header > div.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.abadi-global-header > div.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.abadi-global-header > div.max-w-\[1280px\] {
  max-width: 1280px;
}

.abadi-global-header > div > div.flex {
  display: flex;
}

.abadi-global-header > div > div.items-center {
  align-items: center;
}

.abadi-global-header > div > div.gap-4 {
  gap: 1rem;
}

.abadi-global-header > div > div.gap-3 {
  gap: .75rem;
}

.abadi-global-header [data-slot="sheet-trigger"].inline-flex {
  display: inline-flex;
}

.abadi-global-header [data-slot="sheet-trigger"].items-center {
  align-items: center;
}

.abadi-global-header [data-slot="sheet-trigger"].justify-center {
  justify-content: center;
}

.abadi-global-header [data-slot="sheet-trigger"].size-9 {
  width: 36px;
  height: 36px;
}

.abadi-global-header img.h-10 {
  height: 40px;
}

.abadi-global-header img.w-auto {
  width: auto;
}

.abadi-global-header > div > div:last-child > div.relative {
  position: relative;
}

.abadi-global-header > div > div:last-child > div.hidden {
  display: none;
}

.abadi-global-header input.h-10 {
  height: 40px;
}

.abadi-global-header input.w-40 {
  width: 10rem;
}

.abadi-global-header input.px-3 {
  padding-left: .75rem;
  padding-right: .75rem;
}

.abadi-global-header input.py-2 {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.abadi-global-header > div > div:last-child > a.inline-flex {
  display: inline-flex;
}

.abadi-global-header > div > div:last-child > a.items-center {
  align-items: center;
}

.abadi-global-header > div > div:last-child > a.justify-center {
  justify-content: center;
}

@media (min-width: 640px) {
  .abadi-global-header > div > div:last-child > div.sm\:block {
    display: block;
  }
}

@media (min-width: 768px) {
  .abadi-global-header.md\:h-\[68px\] {
    height: 68px;
  }
}

@media (min-width: 1024px) {
  .abadi-global-header.lg\:h-20 {
    height: 80px;
  }

  .abadi-global-header [data-slot="sheet-trigger"].lg\:hidden {
    display: none;
  }

  .abadi-global-header input.lg\:w-60 {
    width: 15rem;
  }
}

@media (max-width: 1023px) {
  .abadi-global-header .abadi-global-header__nav {
    display: none;
  }
}


/* =========================================================
 * ABADI GLOBAL HEADER — VISUAL PARITY
 * Menyamakan tampilan utility-based header pada halaman
 * yang tidak memuat stylesheet WVC Home.
 * ========================================================= */

/* reset native button agar burger tidak menjadi kotak putih */
.abadi-global-header [data-slot="sheet-trigger"] {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  margin: 0;
  box-shadow: none;
  cursor: pointer;
  border-radius: 6px;
}

.abadi-global-header [data-slot="sheet-trigger"] svg {
  display: block;
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

/* logo */
.abadi-global-header > div > div:first-child > a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.abadi-global-header > div > div:first-child > a > img,
.abadi-global-header > div > div:first-child > a > noscript > img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 285px;
  object-fit: contain;
}

/* login button */
.abadi-global-header > div > div:last-child > a[data-slot="button"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  box-shadow: none;
}

.abadi-global-header > div > div:last-child > a[data-slot="button"] svg {
  display: block;
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

/* finishing header */
.glossy-header.abadi-global-header {
  border-bottom: 3px solid #f59e0b;
}

/* mobile */
@media (max-width: 680px) {

  .abadi-global-header > div {
    padding-left: 48px;
    padding-right: 48px;
  }

  .abadi-global-header [data-slot="sheet-trigger"] {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .abadi-global-header > div > div:first-child {
    min-width: 0;
    gap: 18px;
  }

  .abadi-global-header > div > div:first-child > a > img,
  .abadi-global-header > div > div:first-child > a > noscript > img {
    height: 52px;
    max-width: 280px;
  }

  .abadi-global-header > div > div:last-child > a[data-slot="button"] {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }
}

/* tablet */
@media (min-width: 681px) and (max-width: 1023px) {

  .abadi-global-header > div > div:first-child > a > img,
  .abadi-global-header > div > div:first-child > a > noscript > img {
    height: 50px;
  }

  .abadi-global-header > div > div:last-child > a[data-slot="button"] {
    width: 48px;
    height: 48px;
  }
}

/* desktop: jangan mengubah layout navigasi */
@media (min-width: 1024px) {

  .abadi-global-header > div > div:first-child > a > img,
  .abadi-global-header > div > div:first-child > a > noscript > img {
    height: auto;
  }

  .abadi-global-header > div > div:last-child > a[data-slot="button"] {
    width: auto;
    min-width: 40px;
    height: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

