/**
 * @file stage-overlays.css
 * Fixed overlay helpers for the bottle stage.
 */

/* Soft colour bleed so scroll content enters/leaves the viewport smoothly. */

/* Visible height of the top shadow overlay (height + top offset). Used for scroll-margin-top. */
:root {
  --shadow-helper-visible: 98px;
}

.shadow-helper {
  position: fixed;
  left: 0;
  width: 100%;
  height: 1px;
  pointer-events: none;
  z-index: 198;
}

.shadow-helper--top {
  top: -182px;
  height: 280px;
  background: var(--ci-background-color);
  box-shadow: 0 2px 22px 5px var(--ci-watermark-color);
  box-shadow: 0 2px 22px 5px rgba(11, 0, 0, 0.25);
}

.shadow-helper--bottom {
  bottom: 0;
  box-shadow: 0 0 15px 15px var(--ci-background-color);
}
  

.logo-fixed--scrolled {  
}

/* Fixed selected-bottle controls at the bottom of the fullscreen stage. */
.bottle-footer-overlay {
  position: fixed;
  left: 50%;
  bottom: var(--spacing-m);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  width: min(92vw, 760px);
  pointer-events: none;
  transform: translateX(-50%);
}

.bottle-footer-overlay .nav-circles {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
}

/* Selected-bottle claim copy. */
.bottle-claim {
  width: 90%;
  z-index: 45;
  pointer-events: none;
  background: transparent;
  border: 0;
  border-radius: var(--radius-m);
  padding: var(--spacing-s) var(--spacing-l);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.bottle-claim.is-visible {
  display: block;
}

.bottle-claim__text {
  color: var(--ci-highlight-color);
  text-align: center;
  font-size: clamp(1.3rem, 1.6vw, 1.18rem);
  line-height: 1.32;
}


