/**
 * First-visit promo toast (static markup in HTML, wired by first-visit-popup.js).
 * Hidden state: translate only (no opacity:0) to avoid LCP / render delay on .lct-fvp-body.
 */
#lct-first-visit-popup {
  position: fixed;
  z-index: 100200;
  right: 24px;
  bottom: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  transform: translate3d(0, calc(100% + 32px), 0);
  transition: transform 0.35s ease;
  pointer-events: none;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}
#lct-first-visit-popup.lct-fvp-visible {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}
.lct-fvp-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(6, 42, 42, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 22px 22px 18px;
  position: relative;
  text-align: left;
}
.lct-fvp-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  color: #64748b;
  border-radius: 8px;
  padding: 0;
}
.lct-fvp-close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--navy, #0a2342);
}
.lct-fvp-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy, #0a2342);
  margin: 0 36px 10px 0;
  line-height: 1.3;
}
.lct-fvp-body {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
  margin: 0 0 16px;
}
.lct-fvp-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.lct-fvp-primary {
  display: inline-block;
  background: var(--navy, #0a2342);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.lct-fvp-primary:hover {
  opacity: 0.94;
}
.lct-fvp-secondary {
  background: none;
  border: none;
  padding: 4px 0;
  font-size: 0.82rem;
  color: #64748b;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
}
.lct-fvp-secondary:hover {
  color: var(--navy, #0a2342);
}
@media (max-width: 600px) {
  #lct-first-visit-popup {
    left: 50%;
    right: auto;
    bottom: 20px;
    width: min(94vw, 440px);
    max-width: none;
    transform: translate3d(-50%, calc(100% + 24px), 0);
  }
  #lct-first-visit-popup.lct-fvp-visible {
    transform: translate3d(-50%, 0, 0);
  }
}
