.mk-global-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background .2s ease, padding .2s ease;
}

.mk-global-header.is-scrolled {
  background: rgba(2, 3, 10, .72);
  backdrop-filter: blur(18px);
}

.mk-header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--mk-border-soft);
  border-radius: var(--mk-radius-pill);
  background: rgba(5, 7, 22, .74);
  box-shadow: var(--mk-shadow-soft);
  backdrop-filter: blur(22px);
}

.mk-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mk-text);
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.mk-brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: #02030a;
  background: var(--mk-gradient-premium);
  box-shadow: var(--mk-shadow-cyan);
  overflow: hidden;
  flex: 0 0 auto;
}

.mk-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.mk-brand span {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.mk-brand small {
  color: var(--mk-text-muted);
  font-size: .72rem;
  font-weight: 800;
}

.mk-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.mk-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mk-nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: var(--mk-radius-pill);
  color: var(--mk-text-soft);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 800;
}

.mk-nav-list a:hover {
  color: var(--mk-text);
  background: rgba(255, 255, 255, .06);
}

.mk-header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

/* fix-2026-05-16: account + cart are now icon+label chips with a real
   ≥44px touch target (was a bare 42px number with no icon, and no account
   link at all). Both expose an aria-label for icon-only states. */
.mk-account-link,
.mk-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--mk-border-soft);
  border-radius: var(--mk-radius-pill);
  color: var(--mk-text);
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.mk-account-link:hover,
.mk-cart-link:hover {
  color: var(--mk-text);
  background: rgba(255, 255, 255, .09);
  border-color: var(--mk-border-bright);
}

.mk-account-link:focus-visible,
.mk-cart-link:focus-visible {
  outline: 2px solid var(--mk-cyan);
  outline-offset: 2px;
}

.mk-account-link.is-active {
  color: var(--mk-cyan);
  border-color: rgba(0, 229, 255, .45);
  background: rgba(0, 229, 255, .08);
}

.mk-account-link .mk-action-icon,
.mk-cart-link .mk-action-icon {
  flex: 0 0 auto;
}

.mk-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: var(--mk-radius-pill);
  background: var(--mk-cyan);
  color: var(--mk-bg-950);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.mk-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--mk-border-soft);
  border-radius: 50%;
  color: var(--mk-text);
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}

.mk-menu-toggle span,
.mk-menu-toggle span::before,
.mk-menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.mk-menu-toggle span {
  position: relative;
}

.mk-menu-toggle span::before,
.mk-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.mk-menu-toggle span::before {
  top: -6px;
}

.mk-menu-toggle span::after {
  top: 6px;
}

.mk-menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.mk-menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.mk-menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mk-body-lock {
  overflow: hidden;
}

.mk-mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 998;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--mk-border);
  border-radius: 22px;
  background: rgba(5, 7, 22, .88);
  box-shadow: var(--mk-shadow-card);
  backdrop-filter: blur(18px);
}

.mk-mobile-sticky-cta a {
  min-height: 48px;
  border-radius: 16px;
  text-align: center;
}

.woocommerce-checkout .mk-mobile-sticky-cta,
.woocommerce-cart .mk-mobile-sticky-cta,
.woocommerce-order-received .mk-mobile-sticky-cta {
  display: none !important;
}

.mk-premium-footer {
  position: relative;
  padding: clamp(64px, 8vw, 104px) 0 32px;
  border-top: 1px solid var(--mk-border-soft);
  background:
    radial-gradient(circle at 12% 0%, rgba(168, 85, 247, .16), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(0, 229, 255, .12), transparent 32%),
    #02030a;
}

.mk-footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: clamp(42px, 6vw, 72px);
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--mk-radius-xl);
}

.mk-footer-cta h2 {
  margin-top: 10px;
  max-width: 760px;
}

.mk-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: clamp(24px, 4vw, 44px);
}

.mk-footer-brand p {
  max-width: 360px;
}

.mk-footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.mk-footer-column h3 {
  margin-bottom: 6px;
  color: var(--mk-text);
  font-size: 1rem;
}

.mk-footer-column a {
  color: var(--mk-text-muted);
  text-decoration: none;
  font-weight: 700;
}

.mk-footer-column a:hover {
  color: var(--mk-text);
}

.mk-footer-column a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  text-decoration: none;
}

.mk-footer-column a::after {
  content: "->";
  opacity: 0;
  color: var(--mk-cyan);
  font-family: var(--mk-font-mono);
  transition: opacity .18s ease, transform .18s ease;
}

.mk-footer-column a:hover::after,
.mk-footer-column a:focus-visible::after {
  opacity: 1;
  transform: translateX(2px);
}

.mk-footer-column a:hover,
.mk-footer-column a:focus-visible {
  color: var(--mk-cyan);
}

.mk-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--mk-border-soft);
  color: var(--mk-text-muted);
  font-size: .94rem;
}
