/* ═══════════════════════════════════════════════
   BecaShop New Arrival Modal
   Reuses the .nl-* shell/typography from newsletter.css;
   only the product-photo visual and secondary link are custom.
   ═══════════════════════════════════════════════ */

.pm-visual {
  background: #f4f5f7;
}
.pm-visual-img {
  position: relative;
  z-index: 2;
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(15, 27, 45, .18));
  transition: transform 8s ease;
}
.nl-backdrop.nl-visible .pm-visual-img {
  transform: scale(1.05);
}
.pm-ribbon {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  background: #D52B1E;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

.pm-later {
  background: none !important;
  border: none !important;
  padding: 8px 0 0 !important;
  margin-top: 4px;
  align-self: flex-start;
  color: var(--nl-ink-mute);
  font-size: 12.5px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.pm-later:hover {
  color: var(--nl-ink-soft);
}

/* ——— Flashy nav CTA (temporary replacement for the Swiss Production link) ——— */
.cap-promo-link {
  animation: capPromoPulse 1.8s ease-in-out infinite;
}
.cap-promo-link:hover {
  animation-play-state: paused;
}
@keyframes capPromoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(213, 43, 30, .55) !important; }
  50% { box-shadow: 0 0 0 6px rgba(213, 43, 30, 0) !important; }
}

@media (max-width: 720px) {
  .pm-ribbon {
    top: 14px;
    left: 14px;
  }
}
