/* NO PNJ shared header/nav contract.
   Loaded last on every storefront page to neutralize page-local header drift. */
:root {
  --site-header-height: 76px;
  --site-header-height-mobile: 58px;
  --site-header-x: 18px;
  --site-header-x-mobile: 12px;
}

/* Shared decorative square full stop used by display titles. */
html body .nopnj-square-dot,
html body .hero-dot,
html body .yellow-dot,
html body .lab-title-dot{
  display:inline-block!important;
  position:relative!important;
  width:.16em!important;
  height:.16em!important;
  min-width:7px!important;
  min-height:7px!important;
  aspect-ratio:1 / 1!important;
  margin-left:.10em!important;
  vertical-align:-.055em!important;
  overflow:hidden!important;
  background:rgba(244,244,238,.88)!important;
  color:transparent!important;
  border-radius:0!important;
  font-size:1em!important;
  line-height:0!important;
  letter-spacing:0!important;
  text-indent:-9999px!important;
  text-shadow:none!important;
  box-shadow:
    0 0 10px rgba(244,244,238,.18),
    0 0 18px rgba(244,244,238,.08)!important;
}

html body .hero-dot,
html body .yellow-dot,
html body .lab-title-dot{
  background:#FFD600!important;
  box-shadow:
    0 0 12px rgba(255,214,0,.34),
    0 0 24px rgba(255,214,0,.16)!important;
}

html body .nopnj-dot-keep{
  white-space:nowrap!important;
}

@media (min-width:761px){
  html body .nopnj-square-dot,
  html body .hero-dot,
  html body .yellow-dot,
  html body .lab-title-dot{
    width:.16em!important;
    height:.16em!important;
    min-width:12px!important;
    min-height:12px!important;
  }
}

html body .nopnj-square-dot::before,
html body .nopnj-square-dot::after,
html body .hero-dot::before,
html body .hero-dot::after,
html body .yellow-dot::before,
html body .yellow-dot::after,
html body .lab-title-dot::before,
html body .lab-title-dot::after{
  content:none!important;
  display:none!important;
}

html body > header[data-testid="site.header"] {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  z-index: 5000 !important;
  width: 100% !important;
  height: auto !important;
  min-height: var(--site-header-height) !important;
  max-height: none !important;
  overflow: visible !important;
  background: rgba(5, 5, 5, .92) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

html body > header[data-testid="site.header"] > .shell.nav {
  width: min(1320px, calc(100% - (var(--site-header-x) * 2))) !important;
  max-width: min(1320px, calc(100% - (var(--site-header-x) * 2))) !important;
  height: var(--site-header-height) !important;
  min-height: var(--site-header-height) !important;
  max-height: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 22px !important;
  overflow: visible !important;
}

html body > header[data-testid="site.header"] .brand,
html body > header[data-testid="site.header"] .brand * {
  box-sizing: border-box !important;
  text-decoration: none !important;
}

html body > header[data-testid="site.header"] .brand {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  position: relative !important;
  min-width: max-content !important;
  min-height: 0 !important;
  overflow: visible !important;
  color: var(--text, #f2f2f2) !important;
  font-size: 27px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  isolation: isolate !important;
}

html body > header[data-testid="site.header"] .brand-mark {
  display: none !important;
}

html body > header[data-testid="site.header"] .brand-label {
  position: relative !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 13px !important;
  min-width: 0 !important;
  max-width: none !important;
}

html body > header[data-testid="site.header"] .brand-main {
  display: block !important;
  color: var(--text, #f2f2f2) !important;
  font-size: inherit !important;
  line-height: .9 !important;
}

html body > header[data-testid="site.header"] .brand-baseline {
  display: block !important;
  position: static !important;
  width: max-content !important;
  color: rgba(242,242,242,.82) !important;
  font-family: "chau-philomene-one.regular", Impact, "Arial Black", sans-serif !important;
  font-size: 13px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  opacity: 0 !important;
  transform: translateX(-3px) !important;
  transition: opacity .18s ease, transform .18s ease !important;
}

html body > header[data-testid="site.header"] .brand:hover .brand-baseline {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (hover: none), (pointer: coarse), (max-width: 760px) {
  html body > header[data-testid="site.header"] .brand.is-brand-active .brand-baseline {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

html body > header[data-testid="site.header"] .nav-links {
  flex: 0 1 auto !important;
  min-width: 0 !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  overflow: visible !important;
}

html body > header[data-testid="site.header"] .nav-links a {
  position: relative !important;
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  height: auto !important;
  padding: 0 12px !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--muted, #9a9a9a) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

html body > header[data-testid="site.header"] .nav-links a::after {
  content: "" !important;
  position: absolute !important;
  left: 12px !important;
  right: 12px !important;
  bottom: 8px !important;
  height: 1px !important;
  background: var(--yellow, #ffd600) !important;
  transform: scaleX(0) !important;
  transform-origin: left center !important;
  transition: transform .18s ease !important;
}

html body > header[data-testid="site.header"] .nav-links a:hover,
html body > header[data-testid="site.header"] .nav-links a:focus-visible,
html body > header[data-testid="site.header"] .nav-links a.is-active {
  color: var(--text, #f2f2f2) !important;
  outline: none !important;
}

html body > header[data-testid="site.header"] .nav-links a:hover::after,
html body > header[data-testid="site.header"] .nav-links a:focus-visible::after,
html body > header[data-testid="site.header"] .nav-links a.is-active::after {
  transform: scaleX(1) !important;
}

@media (max-width: 760px) {
  html body > header[data-testid="site.header"] {
    min-height: var(--site-header-height-mobile) !important;
  }

  html body > header[data-testid="site.header"] > .shell.nav {
    width: calc(100% - (var(--site-header-x-mobile) * 2)) !important;
    max-width: calc(100% - (var(--site-header-x-mobile) * 2)) !important;
    height: var(--site-header-height-mobile) !important;
    min-height: var(--site-header-height-mobile) !important;
    gap: 10px !important;
  }

  html body > header[data-testid="site.header"] .brand {
    height: var(--site-header-height-mobile) !important;
    font-size: 20px !important;
    min-width: max-content !important;
    align-self: center !important;
  }

  html body > header[data-testid="site.header"] .brand-main {
    font-size: 20px !important;
  }

  html body > header[data-testid="site.header"] .brand-label {
    position: relative !important;
    gap: 7px !important;
  }

  html body > header[data-testid="site.header"] .brand-baseline {
    font-size: clamp(9px, 2.2vw, 11px) !important;
    letter-spacing: .08em !important;
  }

  html body > header[data-testid="site.header"] .nav-links {
    flex: 1 1 auto !important;
    height: var(--site-header-height-mobile) !important;
    justify-content: flex-end !important;
    gap: clamp(8px, 2.5vw, 14px) !important;
    margin-left: auto !important;
    overflow-x: visible !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  html body > header[data-testid="site.header"] .nav-links::-webkit-scrollbar {
    display: none !important;
  }

  html body > header[data-testid="site.header"] .nav-links a {
    height: var(--site-header-height-mobile) !important;
    min-height: var(--site-header-height-mobile) !important;
    padding: 0 !important;
    font-size: 10.5px !important;
    line-height: 1 !important;
  }

  html body > header[data-testid="site.header"] .nav-links a::after {
    left: 0 !important;
    right: 0 !important;
    bottom: 12px !important;
  }
}
