/* Sticky CTA button (product page) */

.hidden {
  display: none !important;
}

.sticky-cta-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 8px 16px 12px;
  background: transparent !important;
}

.sticky-cta {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #0fba31;
  color: white;
  border: none;
  border-radius: 14px;
  padding: 16px 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  /* Keep visual parity with the other CTAs */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: background 0.2s;
}

.sticky-cta:hover {
  background: #0da82b;
}

.sticky-cta .cta-main {
  font-size: 16px;
  font-weight: 700;
}

.sticky-cta .cta-sub {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
}
