/**
 * Digital product detail (PDP) — Selar-style: carousel (contain), cards, sticky CTA.
 */
.digital-pdp-prose {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #333;
}
.digital-pdp-prose h1,
.digital-pdp-prose h2,
.digital-pdp-prose h3 {
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
}
.digital-pdp-prose h1 { font-size: 1.5rem; }
.digital-pdp-prose h2 { font-size: 1.25rem; }
.digital-pdp-prose h3 { font-size: 1.1rem; }
.digital-pdp-prose p { margin-bottom: 0.75em; }
.digital-pdp-prose ul,
.digital-pdp-prose ol { margin: 0.75em 0 0.75em 1.25em; }
.digital-pdp-prose a {
  color: var(--gm-color-primary, #2c64d3);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.digital-pdp-prose a:hover {
  opacity: 0.88;
  filter: brightness(0.92);
}
.digital-pdp-prose img { max-width: 100%; height: auto; border-radius: 0.5rem; }
.digital-pdp-prose blockquote {
  border-left: 3px solid #c7d6fe;
  padding-left: 1rem;
  color: #475569;
  font-style: italic;
}

/* Carousel: full image visible (letterboxing) */
.digital-pdp-carousel-viewport {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}
.digital-pdp-carousel-track {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.digital-pdp-dot {
  opacity: 0.55;
}
.digital-pdp-dot--active,
.digital-pdp-dot[aria-current="true"] {
  opacity: 1;
  background-color: var(--gm-color-primary, #2c64d3) !important;
  transform: scale(1.15);
}
.digital-pdp-carousel-slide-img {
  max-height: min(70vh, 440px);
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.digital-pdp-sticky-cta {
  box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .digital-pdp-carousel-track { transition: none !important; }
}
