/* Sticky Bottom Bar Component Styles */

.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid #e0e0e0;
  padding: 12px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(100%);
  opacity: 0;
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-bottom-bar__content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sticky-bottom-bar .btn--waitlist-dark {
  width: 100%;
}

.sticky-bottom-bar__button {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sticky-bottom-bar__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hide on desktop */
@media (min-width: 992px) {
  .sticky-bottom-bar {
    display: none !important;
  }
}

/* Ensure proper spacing for mobile content */
@media (max-width: 991px) {
  body {
    padding-bottom: 80px;
  }
}
