.stt-skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--stt-ink);
  color: var(--stt-white);
}
.stt-skip-link:focus { top: 16px; }
.stt-topbar {
  padding: 8px 0;
  background: var(--stt-ink);
  color: var(--stt-white);
  font-size: .78rem;
  text-align: center;
  letter-spacing: .04em;
}
.stt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(250,248,245,.94);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--stt-transition), border-color var(--stt-transition);
}
.stt-header.is-scrolled { border-color: var(--stt-border); box-shadow: 0 10px 35px rgba(29,29,29,.06); }
.stt-header__inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
.stt-brand__text {
  font-family: var(--stt-title);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
}
.stt-brand .custom-logo { width: auto; max-height: 58px; }
.stt-menu { display: flex; justify-content: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.stt-menu a, .stt-actions a { font-size: .9rem; font-weight: 500; text-decoration: none; }
.stt-menu a:hover, .stt-actions a:hover { color: var(--stt-gold-dark); }
.stt-actions { display: flex; align-items: center; gap: 18px; }
.stt-cart-count {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--stt-gold);
  color: var(--stt-white);
  font-size: .72rem;
}
.stt-menu-toggle { display: none; border: 0; background: transparent; }
.stt-menu-toggle span:not(.screen-reader-text) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--stt-ink); }
