/* ── Promo modal (shared by #lpn-welcome and #lpn-qty) ──────────────────── */
.lpn-overlay {
  position: fixed;
  inset: 0;
  z-index: 99000; /* below #lcm-banner (99999) so cookie consent always wins */
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(17, 24, 39, 0);
  transition: background 0.25s ease;
}
.lpn-overlay.is-visible { display: flex; }
.lpn-overlay.is-shown { background: rgba(17, 24, 39, 0.55); }

.lpn-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.28);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.lpn-overlay.is-shown .lpn-card { opacity: 1; transform: translateY(0) scale(1); }

.lpn-card__close {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #fff;
  border: none;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.18);
  color: #171717;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.lpn-card__close:hover { background: #f4f1ec; }

.lpn-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #eef6f3;
  overflow: hidden;
}
.lpn-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lpn-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  text-align: center;
}
.lpn-card__title {
  margin: 0 0 0.6rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1b5e37;
}
.lpn-card__text {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5563;
}
.lpn-card__text strong {
  display: inline-block;
  background: #eef6f3;
  color: #1b5e37;
  border-radius: 6px;
  padding: 0.05rem 0.4rem;
  letter-spacing: 0.03em;
}
.lpn-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: #fbc02d;
  color: #171717;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.15s ease;
}
.lpn-card__cta:hover { background: #f5b100; transform: translateY(-1px); }
.lpn-card__cta.is-copied { background: #1e7f6b; color: #fff; }

@media (max-width: 480px) {
  .lpn-card { max-width: none; }
  .lpn-card__title { font-size: 1.3rem; }
}
