/* LUUPIGO adoption-interest-1b4-public-floating-cta */
.adoption-interest-cta {
  position: fixed;
  right: 16px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  width: min(320px, calc(100vw - 32px));
  border: 1px solid rgba(14, 116, 144, 0.24);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.adoption-interest-cta__link {
  display: grid;
  gap: 3px;
  padding: 14px 44px 14px 14px;
  color: #0f172a;
  text-decoration: none;
}

.adoption-interest-cta__eyebrow {
  color: #047857;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.adoption-interest-cta strong {
  font-size: 18px;
  line-height: 1.15;
}

.adoption-interest-cta small {
  color: #475569;
  font-size: 13px;
  line-height: 1.25;
}

.adoption-interest-cta__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #eef2f7;
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 640px) {
  .adoption-interest-cta {
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    width: min(300px, calc(100vw - 24px));
  }

  .adoption-interest-cta__link {
    padding: 12px 42px 12px 12px;
  }
}
