.top-shell {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
}

.announce {
  height: 0;
  overflow: hidden;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(16px, 3vw, 40px);
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  color: var(--ink, #1a1a1a);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  min-width: 0;
}

.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s ease;
}

.nav-link:hover { opacity: 0.55; }

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font: inherit;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.nav-icon:hover { opacity: 0.55; }

.nav-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.nav-icon--bag { position: relative; }

.nav-icon-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--ink, #1a1a1a);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  line-height: 14px;
  text-align: center;
  letter-spacing: 0;
}

/* Logo-only mode: shown until the new headless theme goes live. */
.top-shell.is-logo-only .site-header {
  grid-template-columns: 1fr;
  justify-items: center;
}

.top-shell.is-logo-only .nav-left,
.top-shell.is-logo-only .nav-right {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  display: block;
  height: clamp(36px, 5.2vw, 48px);
  width: auto;
}

@media (max-width: 720px) {
  .nav-link.hide-mobile { display: none; }
  .site-header { gap: 12px; }
}
