/**
 * Digital Product Details — premium PDP (Gmingo brand: #2f80ed + navy)
 */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.dpd-page {
  --dpd-blue: #2f80ed;
  --dpd-navy: #1e3a8a;
  --dpd-ink: #0f172a;
  --dpd-muted: #64748b;
  --dpd-line: #e8eef5;
  --dpd-bg: #f5f7fb;
  --dpd-card: #ffffff;
  --dpd-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dpd-primary: var(--gm-color-primary, var(--dpd-blue));
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(56rem 36rem at 0% -8%, rgba(47, 128, 237, 0.07), transparent 55%),
    radial-gradient(40rem 28rem at 100% 20%, rgba(30, 58, 138, 0.05), transparent 50%),
    var(--dpd-bg);
  color: var(--dpd-ink);
  min-height: 100vh;
  padding-bottom: 6.5rem;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1024px) {
  .dpd-page { padding-bottom: 3rem; }
}
.dpd-page .sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.dpd-wrap {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1rem 2.5rem;
}
@media (min-width: 640px) {
  .dpd-wrap { padding: 1.25rem 1.5rem 3rem; }
}

/* Breadcrumb */
.dpd-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  margin-bottom: 1.15rem;
  font-size: 0.8rem;
  color: var(--dpd-muted);
}
.dpd-crumb a {
  color: var(--dpd-blue);
  font-weight: 650;
  text-decoration: none;
}
.dpd-crumb a:hover { text-decoration: underline; }
.dpd-crumb__sep { color: #cbd5e1; }
.dpd-crumb__current {
  color: var(--dpd-navy);
  font-weight: 650;
  max-width: 14rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Layout */
.dpd-layout {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .dpd-layout {
    grid-template-columns: minmax(0, 1fr) 21.5rem;
    gap: 1.75rem;
    align-items: start;
  }
}
.dpd-main { min-width: 0; display: grid; gap: 1.15rem; }

/* Reveal */
.dpd-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--dpd-ease), transform 0.55s var(--dpd-ease);
}
.dpd-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Gallery */
.dpd-gallery {
  position: relative;
  border-radius: 1.35rem;
  overflow: visible;
  background: linear-gradient(165deg, #f8fbff 0%, #eef2f7 100%);
  border: 1px solid var(--dpd-line);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 22px 48px -28px rgba(30, 58, 138, 0.35);
}
.digital-pdp-carousel-viewport {
  background: transparent;
  min-height: 280px;
  border-radius: 1.35rem;
  overflow: hidden;
}
@media (min-width: 640px) {
  .digital-pdp-carousel-viewport { min-height: 360px; }
}
.digital-pdp-carousel-track {
  transition: transform 0.4s var(--dpd-ease);
}
.digital-pdp-carousel-slide-img {
  max-height: min(68vh, 460px);
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.45s var(--dpd-ease);
}
.dpd-gallery:hover .digital-pdp-carousel-slide-img {
  transform: scale(1.02);
}
.dpd-gallery__badge {
  position: absolute;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 1.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dpd-navy);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 18px -12px rgba(15, 23, 42, 0.35);
}
.dpd-gallery__badge--top { top: 0.85rem; right: 0.85rem; }
.dpd-gallery__badge--bot { bottom: 0.85rem; left: 0.85rem; }
.dpd-gallery__badge--sale {
  top: 0.85rem;
  left: 0.85rem;
  right: auto;
  background: linear-gradient(135deg, #1e3a8a, #2f80ed);
  color: #fff;
  border-color: transparent;
}
.dpd-gallery__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  gap: 0.5rem;
  color: #94a3b8;
}
.dpd-gallery__empty svg { width: 3rem; height: 3rem; opacity: 0.55; }
.dpd-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--dpd-line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--dpd-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 22px -14px rgba(15, 23, 42, 0.4);
  transition: transform 0.25s var(--dpd-ease), border-color 0.2s ease;
}
.dpd-nav-btn:hover { transform: translateY(-50%) scale(1.05); border-color: #bfdbfe; }
.dpd-nav-btn svg { width: 1.1rem; height: 1.1rem; }
.dpd-nav-btn--prev { left: 0.65rem; }
.dpd-nav-btn--next { right: 0.65rem; }
.dpd-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  right: 0;
  z-index: 12;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}
.digital-pdp-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.55);
  cursor: pointer;
  opacity: 0.65;
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s ease;
}
.digital-pdp-dot--active,
.digital-pdp-dot[aria-current="true"] {
  opacity: 1;
  background: var(--dpd-primary) !important;
  transform: scale(1.2);
}

/* Hero summary (mobile / under gallery) */
.dpd-summary {
  padding: 1.25rem 1.3rem 1.35rem;
  border-radius: 1.35rem;
  background: var(--dpd-card);
  border: 1px solid var(--dpd-line);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 18px 40px -28px rgba(30, 58, 138, 0.28);
}
@media (min-width: 1024px) {
  .dpd-summary { display: none; }
}
.dpd-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dpd-blue);
}
.dpd-title {
  margin: 0.45rem 0 0;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: var(--dpd-navy);
}
.dpd-seller-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.95rem;
}
.dpd-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--dpd-line);
  background: #eff6ff;
  flex-shrink: 0;
}
.dpd-avatar--ph {
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dpd-blue);
}
.dpd-seller-meta { min-width: 0; }
.dpd-seller-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--dpd-ink);
}
.dpd-seller-name a {
  color: inherit;
  text-decoration: none;
}
.dpd-seller-name a:hover { color: var(--dpd-blue); }
.dpd-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #047857;
}
.dpd-verified svg { width: 0.85rem; height: 0.85rem; }
.dpd-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.95rem;
}
.dpd-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 1.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid transparent;
}
.dpd-pill svg { width: 0.85rem; height: 0.85rem; }
.dpd-pill--blue { background: #eff6ff; color: #1d4ed8; border-color: #dbeafe; }
.dpd-pill--gold { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.dpd-snippet {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--dpd-muted);
}
.dpd-price-block { margin-top: 1.15rem; }
.dpd-price {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dpd-navy);
  font-variant-numeric: tabular-nums;
}
.dpd-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 0.75rem;
  margin-top: 0.25rem;
}
.dpd-was {
  font-size: 0.95rem;
  color: #94a3b8;
  text-decoration: line-through;
}
.dpd-save {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.dpd-secure-line {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 650;
  color: #047857;
}
.dpd-secure-line svg { width: 0.95rem; height: 0.95rem; }
.dpd-actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.15rem;
}
.dpd-actions__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.dpd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.65rem 1.15rem;
  border-radius: 0.95rem;
  font-size: 0.9rem;
  font-weight: 750;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--dpd-ease), background 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.dpd-btn svg { width: 1.05rem; height: 1.05rem; flex-shrink: 0; transition: transform 0.3s var(--dpd-ease); }
.dpd-btn:hover svg { transform: rotate(-8deg) scale(1.06); }
.dpd-btn:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}
.dpd-btn--primary {
  background: linear-gradient(135deg, #1e3a8a, #2f80ed);
  color: #fff !important;
  box-shadow: 0 14px 28px -14px rgba(47, 128, 237, 0.7);
}
.dpd-btn--primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 34px -14px rgba(47, 128, 237, 0.75);
}
.dpd-btn--ghost {
  background: #fff;
  color: var(--dpd-navy);
  border: 1.5px solid var(--dpd-line);
}
.dpd-btn--ghost:hover {
  border-color: #bfdbfe;
  color: var(--dpd-blue);
  transform: translateY(-1px);
}
.dpd-btn--wish[aria-disabled="true"] {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Purchase card (desktop) — stays in place; trust sits under it */
.dpd-buy {
  display: block;
  min-width: 0;
}
@media (max-width: 1023px) {
  .dpd-buy__card { display: none; }
  .dpd-buy-trust { margin-top: 0; }
}
@media (min-width: 1024px) {
  .dpd-buy {
    position: static;
  }
}
.dpd-buy__card {
  padding: 1.25rem 1.25rem 1.3rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(47, 128, 237, 0.1) 0%, transparent 55%),
    #fff;
  border: 1px solid #dbeafe;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 24px 48px -28px rgba(30, 58, 138, 0.4);
}
.dpd-buy__label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dpd-blue);
}
.dpd-buy__price {
  margin: 0.4rem 0 0;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dpd-navy);
}
.dpd-buy__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.dpd-buy__list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: #334155;
}
.dpd-buy__list svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--dpd-blue);
  flex-shrink: 0;
}
.dpd-buy__cta { margin-top: 1.1rem; width: 100%; }
.dpd-buy__note {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--dpd-muted);
  text-align: center;
}
.dpd-buy-trust {
  margin-top: 1rem;
}
.dpd-buy-trust .dpd-section-label {
  margin-bottom: 0.55rem;
}
.dpd-trust--stack {
  grid-template-columns: 1fr !important;
  gap: 0.5rem;
}
.dpd-trust--stack .dpd-trust__item {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.8rem;
}

/* Feature cards */
.dpd-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .dpd-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.dpd-feature {
  padding: 1rem 1.05rem;
  border-radius: 1.15rem;
  border: 1px solid var(--dpd-line);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(47, 128, 237, 0.08) 0%, transparent 55%),
    #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: transform 0.28s var(--dpd-ease), box-shadow 0.28s ease, border-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .dpd-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(47, 128, 237, 0.28);
    box-shadow: 0 16px 32px -20px rgba(30, 58, 138, 0.35);
  }
  .dpd-feature:hover .dpd-feature__icon { transform: rotate(-6deg) scale(1.05); }
}
.dpd-feature__icon {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1e3a8a, #2f80ed);
  color: #fff;
  box-shadow: 0 10px 20px -12px rgba(47, 128, 237, 0.65);
  transition: transform 0.28s var(--dpd-ease);
}
.dpd-feature__icon svg { width: 1.15rem; height: 1.15rem; }
.dpd-feature h3 {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--dpd-navy);
}
.dpd-feature p {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--dpd-muted);
}

/* Accordion / content cards */
.dpd-card {
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid var(--dpd-line);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  overflow: hidden;
}
.dpd-acc__item + .dpd-acc__item { border-top: 1px solid #f1f5f9; }
.dpd-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.4rem;
  padding: 0.95rem 1.15rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--dpd-navy);
  font-weight: 800;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}
.dpd-acc__btn:hover { background: #f8fbff; }
.dpd-acc__btn:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: -2px;
}
.dpd-acc__chev {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--dpd-muted);
  transition: transform 0.3s var(--dpd-ease);
  flex-shrink: 0;
}
.dpd-acc__item.is-open .dpd-acc__chev { transform: rotate(180deg); }
.dpd-acc__panel {
  display: none;
  padding: 0 1.15rem 1.15rem;
}
.dpd-acc__item.is-open .dpd-acc__panel { display: block; }
.dpd-prose {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #334155;
}
.dpd-prose h1, .dpd-prose h2, .dpd-prose h3 {
  font-weight: 800;
  color: var(--dpd-navy);
  margin: 1.1em 0 0.45em;
  letter-spacing: -0.02em;
}
.dpd-prose h1 { font-size: 1.35rem; }
.dpd-prose h2 { font-size: 1.15rem; }
.dpd-prose h3 { font-size: 1.02rem; }
.dpd-prose p { margin: 0 0 0.85em; }
.dpd-prose ul, .dpd-prose ol { margin: 0.65em 0 0.85em 1.2em; }
.dpd-prose a {
  color: var(--dpd-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dpd-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}
.dpd-prose blockquote {
  border-left: 3px solid #bfdbfe;
  padding-left: 1rem;
  color: #64748b;
  font-style: italic;
}
.digital-pdp-prose { /* legacy alias */ }

/* Trust */
.dpd-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .dpd-trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .dpd-trust { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.dpd-trust__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.9rem 0.95rem;
  border-radius: 1.05rem;
  background: #fff;
  border: 1px solid var(--dpd-line);
  transition: transform 0.25s var(--dpd-ease), border-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .dpd-trust__item:hover {
    transform: translateY(-2px);
    border-color: #bfdbfe;
  }
}
.dpd-trust__ico {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: var(--dpd-blue);
}
.dpd-trust__ico svg { width: 1.05rem; height: 1.05rem; }
.dpd-trust__item p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 750;
  color: var(--dpd-navy);
  line-height: 1.35;
}

/* Seller */
.dpd-seller {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(47, 128, 237, 0.1) 0%, transparent 55%),
    #fff;
  border: 1px solid #dbeafe;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.dpd-seller__avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 1.1rem;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--dpd-line), 0 12px 24px -14px rgba(47, 128, 237, 0.45);
  background: #eff6ff;
}
.dpd-seller__avatar.dpd-avatar--ph {
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dpd-blue);
}
.dpd-seller__body { flex: 1; min-width: 12rem; }
.dpd-seller__body h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dpd-navy);
}
.dpd-seller__bio {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--dpd-muted);
  max-width: 32rem;
}
.dpd-seller__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}
.dpd-seller__cta { flex-shrink: 0; }

/* Share */
.dpd-share {
  padding: 1.2rem 1.25rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid var(--dpd-line);
}
.dpd-share h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dpd-navy);
}
.dpd-share__lead {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  color: var(--dpd-muted);
}
.dpd-share__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.95rem;
}
.dpd-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.45rem 0.9rem;
  border-radius: 0.85rem;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
  border: 1.5px solid var(--dpd-line);
  background: #fff;
  color: var(--dpd-ink);
  cursor: pointer;
  transition: transform 0.25s var(--dpd-ease), border-color 0.2s ease, box-shadow 0.25s ease;
}
.dpd-share__btn:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 10px 20px -14px rgba(47, 128, 237, 0.45);
}
.dpd-share__btn svg,
.dpd-share__logo { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }
.dpd-share__btn--wa {
  color: #075e54;
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.dpd-share__btn--wa:hover { background: #d1fae5; border-color: #6ee7b7; }
.dpd-share__btn--fb {
  color: #1877f2;
  background: #eff6ff;
  border-color: #bfdbfe;
}
.dpd-share__btn--fb:hover { background: #dbeafe; border-color: #93c5fd; }
.dpd-share__btn--x {
  color: #0f172a;
  background: #f8fafc;
  border-color: #e2e8f0;
}
.dpd-share__btn--x:hover { background: #f1f5f9; border-color: #cbd5e1; }
.dpd-share__btn--tg {
  color: #0284c7;
  background: #f0f9ff;
  border-color: #bae6fd;
}
.dpd-share__btn--tg:hover { background: #e0f2fe; border-color: #7dd3fc; }
.dpd-share__btn--copy {
  color: #1e3a8a;
  background: #eff6ff;
  border-color: #bfdbfe;
}
.dpd-share__btn.is-copied {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #047857;
}

.dpd-aff {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 0.95rem;
  font-size: 0.8rem;
  font-weight: 650;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

/* Mobile sticky bar */
.dpd-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--dpd-line);
  box-shadow: 0 -12px 32px -16px rgba(15, 23, 42, 0.25);
}
@media (min-width: 1024px) {
  .dpd-sticky { display: none; }
}
.dpd-sticky__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}
.dpd-sticky__price {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dpd-navy);
  letter-spacing: -0.02em;
}
.dpd-sticky__save {
  margin: 0.15rem 0 0;
  font-size: 0.68rem;
  font-weight: 700;
  color: #047857;
}
.dpd-sticky .dpd-btn {
  min-height: 46px;
  padding-inline: 1.25rem;
  flex-shrink: 0;
}

.dpd-section-label {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dpd-blue);
}

@media (prefers-reduced-motion: reduce) {
  .dpd-reveal,
  .digital-pdp-carousel-track,
  .dpd-btn,
  .dpd-feature,
  .digital-pdp-carousel-slide-img {
    transition: none !important;
  }
  .dpd-reveal { opacity: 1; transform: none; }
  .dpd-gallery:hover .digital-pdp-carousel-slide-img { transform: none; }
}
