.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  width: calc(100% - 48px);
  max-width: 480px;
}

.sticky-cta.visible {
  opacity: 1;
  pointer-events: all;
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 16px;
  border-radius: 50px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.sticky-btn-ig {
  background: var(--orange);
  color: white;
}

.sticky-btn-combo {
  background: var(--yellow);
  color: var(--black);
}

.sticky-btn:hover {
  transform: translateY(-2px);
}
