.pkhdr-page-shell {
  margin: 0;
  min-height: 100vh;
}

.pkhdr-header,
.pkhdr-header * {
  box-sizing: border-box;
}

.pkhdr-header {
  position: sticky;
  top: 0;
  z-index: var(--pkhdr-z);
  width: 100%;
  background: var(--pkhdr-bg);
  border-bottom: 1px solid var(--pkhdr-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pkhdr-navbar {
  width: min(calc(100% - 32px), var(--pkhdr-container));
  min-height: var(--pkhdr-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.pkhdr-skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: calc(var(--pkhdr-z) + 10);
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--pkhdr-accent);
  color: #04221f;
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--pkhdr-ease);
}

.pkhdr-skip-link:focus {
  transform: translateY(0);
}

.pkhdr-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: var(--pkhdr-text);
}

.pkhdr-brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--pkhdr-accent), var(--pkhdr-accent-2));
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(68, 224, 207, .22);
}

.pkhdr-brand__name {
  font-size: 1.04rem;
  font-weight: 850;
  letter-spacing: -.02em;
}

.pkhdr-primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.pkhdr-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 10px;
  color: var(--pkhdr-muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 750;
  white-space: nowrap;
  transition: color var(--pkhdr-ease), background var(--pkhdr-ease), transform var(--pkhdr-ease);
}

.pkhdr-nav-link:hover,
.pkhdr-nav-link:focus-visible,
.pkhdr-nav-link.is-active {
  color: var(--pkhdr-text);
  background: rgba(68, 224, 207, .10);
}

.pkhdr-nav-link:active {
  transform: translateY(1px);
}

.pkhdr-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.pkhdr-icon-button,
.pkhdr-wallet-trigger,
.pkhdr-profile-trigger,
.pkhdr-auth-button,
.pkhdr-mobile-trigger {
  font: inherit;
}

.pkhdr-icon-button,
.pkhdr-wallet-trigger,
.pkhdr-profile-trigger {
  border: 1px solid var(--pkhdr-border);
  background: rgba(255,255,255,.025);
  color: var(--pkhdr-text);
  transition: border-color var(--pkhdr-ease), background var(--pkhdr-ease), transform var(--pkhdr-ease);
}

.pkhdr-icon-button:hover,
.pkhdr-wallet-trigger:hover,
.pkhdr-profile-trigger:hover {
  border-color: var(--pkhdr-border-strong);
  background: rgba(68,224,207,.07);
}

.pkhdr-icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
}

.pkhdr-wallet-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 11px 5px 6px;
  border-radius: 13px;
  cursor: pointer;
}

.pkhdr-wallet-trigger__icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(68,224,207,.22), rgba(78,167,255,.20));
  color: var(--pkhdr-accent);
  font-weight: 900;
}

.pkhdr-wallet-trigger__copy,
.pkhdr-profile-trigger__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.12;
}

.pkhdr-wallet-trigger__copy small,
.pkhdr-profile-trigger__copy small {
  color: var(--pkhdr-soft);
  font-size: .68rem;
}

.pkhdr-wallet-trigger__copy strong,
.pkhdr-profile-trigger__copy strong {
  color: var(--pkhdr-text);
  font-size: .82rem;
  font-weight: 850;
}

.pkhdr-profile-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 9px 5px 6px;
  border-radius: 13px;
  cursor: pointer;
  max-width: 220px;
}

.pkhdr-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pkhdr-accent), var(--pkhdr-accent-2));
  color: white;
  font-weight: 900;
}

.pkhdr-profile-trigger__copy {
  min-width: 0;
}

.pkhdr-profile-trigger__copy strong,
.pkhdr-profile-trigger__copy small {
  overflow: hidden;
  max-width: 140px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pkhdr-chevron {
  color: var(--pkhdr-soft);
  font-size: .8rem;
}

.pkhdr-notification-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--pkhdr-danger);
  border: 2px solid var(--pkhdr-bg-solid);
  color: white;
  font-size: .62rem;
  font-weight: 900;
}

.pkhdr-auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 11px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 850;
}

.pkhdr-auth-button--secondary {
  color: var(--pkhdr-text);
  border: 1px solid var(--pkhdr-border);
  background: rgba(255,255,255,.025);
}

.pkhdr-auth-button--primary {
  color: #05211e;
  background: linear-gradient(135deg, var(--pkhdr-accent), #78f1df);
}

.pkhdr-live-reservation {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 6px 10px;
  border-radius: 13px;
  border: 1px solid rgba(88,214,154,.22);
  background: rgba(88,214,154,.07);
  color: var(--pkhdr-text);
  text-decoration: none;
}

.pkhdr-live-reservation__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pkhdr-success);
  box-shadow: 0 0 0 5px rgba(88,214,154,.10);
}

.pkhdr-live-reservation__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.pkhdr-live-reservation__copy small {
  color: var(--pkhdr-soft);
  font-size: .65rem;
}

.pkhdr-live-reservation__copy strong {
  font-size: .78rem;
}

.pkhdr-live-reservation__time {
  color: var(--pkhdr-success);
  font-weight: 900;
  font-size: .78rem;
}

.pkhdr-mobile-trigger {
  display: none;
}

.pkhdr-main {
  min-height: 1px;
}

body.pkhdr-menu-open {
  overflow: hidden;
}