/* One compact, self-contained Glacier offer; existing storefront surfaces stay unchanged. */
#ozark-storefront .ozark-offer {
  position: fixed;
  inset: 0;
  width: min(400px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 32px;
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 26px;
  background: linear-gradient(145deg, #fff 8%, #f3fbfe 64%, #e4f4fb);
  color: #0a1b22;
  box-shadow: 0 24px 80px rgba(4, 30, 43, .24), 0 0 0 1px rgba(122, 179, 203, .3), inset 0 1px 0 #fff;
  font-family: inherit;
  text-align: left;
}
#ozark-storefront .ozark-offer:not([open]) { display: none; }
#ozark-storefront .ozark-offer[open] { animation: ozark-offer-in 260ms cubic-bezier(.2, .8, .2, 1) both; }
#ozark-storefront .ozark-offer::backdrop {
  background: rgba(8, 25, 35, .38);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  animation: ozark-offer-backdrop 220ms ease-out both;
}
#ozark-storefront .ozark-offer button {
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
#ozark-storefront .ozark-offer button:focus-visible {
  outline: 2px solid #087ca7;
  outline-offset: 4px;
}
#ozark-storefront .ozark-offer__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: #45616e;
  transition: background-color 160ms ease;
}
#ozark-storefront .ozark-offer__close:hover { background: #e6f3f9; }
#ozark-storefront .ozark-offer__brand { display: flex; align-items: center; gap: 10px; margin: 0 28px 28px 0; font-size: 1rem; font-weight: 750; }
#ozark-storefront .ozark-offer__brand img { width: 36px; height: 36px; object-fit: contain; }
#ozark-storefront .ozark-offer__eyebrow { margin: 0 0 8px; color: #45616e; font-size: .875rem; font-weight: 500; line-height: 1.5; }
#ozark-storefront #ozarkOfferTitle {
  margin: 0;
  padding: 0;
  color: #0a1b22;
  background: none;
  -webkit-text-fill-color: currentColor;
  font: inherit;
  font-size: clamp(1.85rem, 6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.04em;
  text-shadow: none;
}
#ozark-storefront #ozarkOfferTitle span { color: #087ca7; }
#ozark-storefront #ozarkOfferDescription { margin: 12px 0 24px; color: #45616e; font-size: 1rem; line-height: 1.5; }
#ozark-storefront .ozark-offer__coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 10px 10px 18px;
  border: 1px solid #bfdfec;
  border-radius: 15px;
  background: rgba(255, 255, 255, .8);
  box-shadow: inset 0 1px 0 #fff, 0 4px 16px rgba(8, 124, 167, .04);
}
#ozark-storefront .ozark-offer__coupon code { color: #075e80; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 1.4rem; font-weight: 700; letter-spacing: .04em; user-select: all; overflow-wrap: anywhere; }
#ozark-storefront .ozark-offer__coupon button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #08779d;
  border-radius: 10px;
  background: linear-gradient(160deg, #0785ae, #056887);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 3px 10px rgba(8, 124, 167, .16);
  font-size: .875rem;
  font-weight: 650;
  transition: box-shadow 160ms ease, transform 160ms ease;
}
#ozark-storefront .ozark-offer__coupon button:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 5px 16px rgba(8, 124, 167, .26); transform: translateY(-1px); }
#ozark-storefront .ozark-offer__coupon button:active { transform: translateY(0); }
#ozark-storefront .ozark-offer__coupon button:disabled { cursor: wait; }
#ozark-storefront .ozark-offer__status { min-height: 1.5em; margin: 8px 0 4px; color: #075e80; font-size: .875rem; line-height: 1.5; }
#ozark-storefront .ozark-offer__continue { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; min-height: 44px; padding: 8px; border: 0; border-radius: 10px; background: transparent; color: #45616e; font-size: .875rem; font-weight: 550; }
#ozark-storefront .ozark-offer__continue:hover { color: #075e80; background: rgba(255, 255, 255, .6); }
#ozark-storefront .ozark-offer.is-leaving { animation: ozark-offer-out 160ms ease-in both; }
#ozark-storefront .ozark-offer.is-leaving::backdrop { animation: ozark-offer-backdrop 160ms ease-in reverse both; }
@keyframes ozark-offer-in { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes ozark-offer-out { to { opacity: 0; transform: translateY(6px) scale(.99); } }
@keyframes ozark-offer-backdrop { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 420px) { #ozark-storefront .ozark-offer { padding: 28px 22px 20px; border-radius: 22px; } }
@media (prefers-reduced-transparency: reduce) { #ozark-storefront .ozark-offer::backdrop { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(8, 25, 35, .5); } }
@media (prefers-reduced-motion: reduce), (update: slow) {
  #ozark-storefront .ozark-offer[open], #ozark-storefront .ozark-offer::backdrop, #ozark-storefront .ozark-offer.is-leaving, #ozark-storefront .ozark-offer.is-leaving::backdrop { animation: none; }
  #ozark-storefront .ozark-offer button { transition: none; transform: none; }
}
@media print { #ozark-storefront .ozark-offer[open] { display: none; } #ozark-storefront .ozark-offer::backdrop { background: transparent; backdrop-filter: none; } }
