/* ========================================
   STICKY CTA — Mobile fixed button
   Shows after hero, hides near CTA/footer
   ======================================== */

.sticky-cta {
  position: fixed;
  bottom: 110px; /* above bottom-nav burger (70px panel + 40px burger overlap) */
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.sticky-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 400px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #2c2620, #3d3428);
  color: #faf8f4;
  border: none;
  border-radius: 60px;
  font-family: 'Golos Text', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(44, 38, 32, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta__btn:active {
  transform: scale(0.97);
}

.sticky-cta__btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Only show on mobile (< 1024px) */
@media (max-width: 1023px) {
  .sticky-cta {
    display: flex;
  }
}

/* Hide when fullscreen menu is open */
body.scroll-locked .sticky-cta {
  display: none !important;
}

/* When cookie banner is visible, shift sticky CTA up */
.sticky-cta.sticky-cta--cookie-shift {
  bottom: 180px;
}
