/* Shop header foundations. Responsive navigation is shared with the main site
   in mobile-navigation.css, loaded after this file. */
body { --shop-header-h: 60px; --header-h: var(--shop-header-h); padding-top: calc(var(--shop-header-h) + env(safe-area-inset-top, 0px)); }
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; background: #fafafa; border-bottom: 1px solid #e0e0e0; padding-top: env(safe-area-inset-top, 0px); }
.site-header .header-inner { max-width: 1600px; margin: auto; padding: 0 24px; height: var(--shop-header-h); display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; }
.site-logo { min-height: 44px; display: inline-flex; align-items: center; justify-self: start; }
.site-logo img { width: auto; height: 20px; }
.site-nav { display: flex; align-items: center; gap: clamp(2px, .35vw, 6px); justify-self: center; }
.site-nav .nav-link { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 8px clamp(12px, 1vw, 16px); color: #707070; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .055em; line-height: 1; text-decoration: none; white-space: nowrap; }
.site-nav .nav-link:hover, .site-nav .nav-link:focus-visible { color: #0a0a0a; }
.site-nav .nav-link.active { color: #0a0a0a; }
.nav-link-icon, .nav-spacer, .nav-overlay { display: none; }
.header-controls { justify-self: end; }
@media (min-width: 601px) and (max-width: 899px) {
  body { --shop-header-h: 58px; }
}
@media (max-width: 600px) {
  body { --shop-header-h: 56px; }
}
@media print { .site-header, .nav-overlay { display: none; } body { padding-top: 0; } }
