/* Thin design switcher. Does not replace shop nav. */
.design-switcher {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
  min-height: 2.6rem;
  padding: 0.25rem 0.5rem;
  background: #0b0b0d;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-family: Figtree, "Segoe UI", system-ui, sans-serif;
}
.design-switcher a {
  color: #c8c2b6;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
}
.design-switcher a:hover { color: #fff; }
.design-switcher a.is-current {
  color: #0b0b0d;
  background: #f3ead6;
  font-weight: 600;
}
.design-switcher a:focus-visible {
  outline: 2px solid #f3ead6;
  outline-offset: 2px;
}
/* Keep each design's own sticky header under the bar. */
.site-header { top: 2.6rem !important; }
