/* Shared Glacier styling, in normal flow above the existing sticky navigation. */
.site-offer-bar {
  position: relative;
  isolation: isolate;
  background: linear-gradient(90deg, #fff, var(--bg-soft, #f3fbfe) 50%, #fff);
  color: var(--ink-soft, #425761);
  border-bottom: 1px solid var(--line, #dceaf0);
  box-shadow: inset 0 1px 0 #fff;
  font-size: .875rem;
  line-height: 1.5;
}
.site-offer-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 18px;
  max-width: 1200px;
  min-height: 44px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-offer-bar__message {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  padding: 5px 0;
}
.site-offer-bar__badge {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #c9e7f2;
  border-radius: 999px;
  background: #eaf7fc;
  color: var(--oz-violet-dark, #075e80);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}
.site-offer-bar__detail { color: var(--ink-soft, #425761); font-weight: 500; letter-spacing: -.01em; }
.site-offer-bar__detail code { color: var(--oz-violet-dark, #075e80); font: inherit; font-weight: 800; overflow-wrap: anywhere; }
.site-offer-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 0;
  color: var(--oz-violet-dark, #075e80);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(8, 124, 167, .3);
  text-underline-offset: 4px;
  white-space: nowrap;
}
.site-offer-bar__link::before { content: ''; width: 1px; height: 14px; margin-right: 8px; background: var(--line, #dceaf0); }
.site-offer-bar__link:hover { color: var(--oz-violet, #087ca7); text-decoration-color: currentColor; }
.site-offer-bar__link:focus-visible { outline: 2px solid var(--oz-violet, #087ca7); outline-offset: 3px; border-radius: 5px; }
@media (max-width: 600px) {
  .site-offer-bar__inner { gap: 0 16px; padding-inline: 12px; }
  .site-offer-bar__message { gap: 4px 8px; }
}
@media (max-width: 420px) {
  .site-offer-bar__detail { display: none; }
  .site-offer-bar__message:has(code) .site-offer-bar__detail { display: inline; }
  .site-offer-bar__message:has(code) { flex: 1 1 100%; padding-top: 8px; }
}
@media print { .site-offer-bar { display: none; } }
