/* Compact guest navigation appears after the original centered logo scrolls away. */
html {--scroll-header-offset:98px}
.scroll-header {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:20;
  padding-top:env(safe-area-inset-top,0px);
  color:#002f87;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid #dbeaf1;
  box-shadow:0 8px 24px -18px #183d6f66;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  opacity:0;
  transform:translateY(-10px);
  transition:opacity 180ms ease,transform 180ms ease;
}
.scroll-header[hidden] {display:none!important}
.scroll-header[inert] {pointer-events:none}
.scroll-header.is-visible {opacity:1;transform:none}
.scroll-header[data-still=true] {transition:none;transform:none}
.scroll-header-inner {
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:24px;
  width:calc(100% - 48px);
  max-width:1280px;
  min-height:81px;
  margin-inline:auto;
  padding-block:8px;
}
.scroll-header-brand {display:flex;align-items:center;justify-content:center;min-width:108px;min-height:55px;border-radius:10px;text-decoration:none}
.scroll-header-brand img {width:108px;height:55px;object-fit:contain}
.scroll-header-navigation {display:flex;justify-content:center;align-items:stretch;gap:7px;min-width:0}
.scroll-header-navigation a {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:9px 13px;
  border-radius:13px;
  color:#496079;
  text-align:center;
  text-decoration:none;
  font-size:13px;
  font-weight:550;
  line-height:1.25;
}
.scroll-header-navigation a[aria-current=page] {color:#002f87;background:#e8f6fc;font-weight:700}
.scroll-header-cart {display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:44px;padding:9px 12px;border-radius:99px;background:#e7f7fc;color:#003d78;font-size:13px;font-weight:650;white-space:nowrap}
.scroll-header-count {display:grid;place-items:center;min-width:25px;height:25px;padding-inline:5px;border-radius:50%;background:#fff;color:#00718f;font-size:12px;font-variant-numeric:tabular-nums}
.scroll-header a:focus-visible,.scroll-header button:focus-visible {outline:3px solid #db860c;outline-offset:2px}
#olympus-page section[id],#olympus-page .selection-bar {scroll-margin-top:var(--scroll-header-offset)}
@media(hover:hover) and (pointer:fine) {
  .scroll-header-navigation a:hover {background:#f0f8fc;color:#002f87}
  .scroll-header-cart:hover {background:#d8f0fa}
}
@media(max-width:900px) and (min-width:761px) {
  .scroll-header-inner {gap:12px;width:calc(100% - 32px)}
  .scroll-header-navigation {gap:2px}
  .scroll-header-navigation a {padding-inline:9px;font-size:12px}
}
@media(max-width:760px) {
  html {--scroll-header-offset:124px}
  .scroll-header-inner {grid-template-columns:minmax(0,1fr) auto;gap:0 12px;width:calc(100% - 24px);min-height:0;padding:5px 0 4px}
  .scroll-header-brand {justify-self:start;min-width:94px;min-height:48px}
  .scroll-header-brand img {width:94px;height:48px}
  .scroll-header-cart {grid-column:2;grid-row:1;font-size:12px;padding-inline:11px}
  .scroll-header-navigation {display:grid;grid-column:1/-1;grid-row:2;grid-template-columns:repeat(4,minmax(0,1fr));gap:2px;margin-top:2px}
  .scroll-header-navigation a {min-width:0;min-height:44px;padding:7px 3px;border-radius:11px;font-size:clamp(10px,2.65vw,12px);white-space:normal;overflow-wrap:normal}
}
@media(prefers-reduced-motion:reduce) {.scroll-header {transition:none;transform:none}}
.scroll-header[data-page-mode=standalone] .scroll-header-inner{grid-template-columns:minmax(0,1fr) auto}
.scroll-header[data-page-mode=standalone] .scroll-header-brand{justify-self:start}
.scroll-header-navigation[hidden]{display:none!important}
