/* ── Hero ─────────────────────────────────────────────────────────────────── */
.pp-hero {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 40px 24px 48px;
}
.pp-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
}
.pp-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #e5e7eb;
  background: #f9fafb;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp-img-placeholder {
  font-size: 80px;
  opacity: .4;
}
.pp-merchant-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #52525b;
  text-decoration: none;
  margin-bottom: 14px;
  transition: color .15s;
}
.pp-merchant-link:hover { color: #16a34a; }
.pp-merchant-logo {
  width: 20px; height: 20px;
  border-radius: 5px;
  object-fit: contain;
  border: 1px solid #e5e7eb;
}
.pp-name {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #0f1a0f;
  margin-bottom: 14px;
}
.pp-price {
  font-size: 32px;
  font-weight: 800;
  color: #16a34a;
  margin-bottom: 18px;
  line-height: 1;
}
.pp-price-cur {
  font-size: 16px;
  font-weight: 500;
  color: #9ca3af;
}
.pp-desc {
  margin-bottom: 24px;
}
.pp-desc p {
  font-size: 15px;
  color: #52525b;
  line-height: 1.75;
  margin-bottom: 10px;
}
.pp-desc p:last-child { margin-bottom: 0; }
.pp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #16a34a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 99px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background .15s, transform .15s;
}
.pp-cta:hover { background: #14532d; transform: translateY(-1px); }
.pp-svc-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.pp-svc-label { font-size: 12px; color: #9ca3af; font-weight: 500; }
.pp-svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 99px;
  padding: 4px 12px;
  text-decoration: none;
  transition: all .15s;
}
.pp-svc-pill:hover { background: #16a34a; color: #fff; border-color: #16a34a; }

/* ── Sections ─────────────────────────────────────────────────────────────── */
.pp-section { padding: 48px 24px; }
.pp-section-alt { background: #f9fafb; }
.pp-inner { max-width: 1000px; margin: 0 auto; }
.pp-section-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0f1a0f;
  margin-bottom: 8px;
}
.pp-section-sub {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 24px;
}

/* ── Payment breakdown cards ──────────────────────────────────────────────── */
.pp-breakdowns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.pp-breakdown-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .15s, box-shadow .15s;
}
.pp-breakdown-card:hover {
  border-color: #86efac;
  box-shadow: 0 4px 16px rgba(22,163,74,.1);
}
.pp-bd-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.pp-bd-name { font-size: 14px; font-weight: 700; color: #0f1a0f; }
.pp-bd-amount {
  font-size: 30px;
  font-weight: 800;
  color: #16a34a;
  line-height: 1;
}
.pp-bd-freq {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}
.pp-bd-detail {
  font-size: 12px;
  color: #52525b;
  background: #f9fafb;
  border-radius: 8px;
  padding: 6px 10px;
  font-family: monospace;
  margin-top: 4px;
}
.pp-bd-desc {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.5;
}
.pp-bd-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 99px;
  padding: 2px 8px;
  margin-top: 2px;
}
.pp-bd-link {
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
  text-decoration: none;
  margin-top: auto;
  padding-top: 8px;
}
.pp-bd-link:hover { text-decoration: underline; }
.pp-bd-disclaimer {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.6;
  font-style: italic;
}

/* ── Merchant section ─────────────────────────────────────────────────────── */
.pp-merchant-desc {
  font-size: 15px;
  color: #52525b;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 20px;
}
.pp-merchant-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.pp-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 99px;
  text-decoration: none;
  transition: all .15s;
}
.pp-action-primary { background: #16a34a; color: #fff; }
.pp-action-primary:hover { background: #14532d; transform: translateY(-1px); }
.pp-action-secondary { background: #fff; color: #0f1a0f; border: 1.5px solid #0f1a0f; }
.pp-action-secondary:hover { background: #0f1a0f; color: #fff; }

/* ── More products ────────────────────────────────────────────────────────── */
.pp-more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.pp-more-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: all .15s;
}
.pp-more-card:hover {
  border-color: #86efac;
  box-shadow: 0 4px 16px rgba(22,163,74,.1);
  transform: translateY(-2px);
}
.pp-more-img-wrap {
  width: 100%;
  height: 160px;
  background: #f3f4f6;
  overflow: hidden;
  flex-shrink: 0;
}
.pp-more-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .2s; }
.pp-more-card:hover .pp-more-img { transform: scale(1.05); }
.pp-more-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; background: #f0fdf4;
}
.pp-more-info { padding: 10px 12px 14px; }
.pp-more-name { font-size: 13px; font-weight: 600; color: #0f1a0f; line-height: 1.35; margin-bottom: 4px; }
.pp-more-price { font-size: 14px; font-weight: 800; color: #16a34a; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pp-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .pp-img-wrap { max-height: 320px; }
  .pp-section { padding: 36px 20px; }
  .pp-breakdowns { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pp-breakdowns { grid-template-columns: 1fr; }
  .pp-more-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Breakdown buy button ─────────────────────────────────────────────────── */
.pp-bd-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 14px;
  border-radius: 10px;
  background: #16a34a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
  transition: background .15s;
  text-align: center;
}
.pp-bd-buy-btn:hover { background: #14532d; }

/* ── Offer box (shared styles with merchant page) ─────────────────────────── */
.mh-offer-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  border: 1.5px dashed #fde047;
  border-radius: 16px;
  padding: 20px 24px;
}
.mh-offer-icon { font-size: 32px; flex-shrink: 0; }
.mh-offer-content { flex: 1; min-width: 180px; }
.mh-offer-title { font-size: 17px; font-weight: 800; color: #713f12; margin-bottom: 4px; }
.mh-offer-desc { font-size: 13px; color: #92400e; line-height: 1.5; }
.mh-offer-expiry { font-size: 11px; color: #b45309; margin-top: 4px; font-weight: 500; }
.mh-offer-code-wrap { flex-shrink: 0; }
.mh-offer-code-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #92400e; margin-bottom: 4px; }
.mh-offer-code { font-size: 15px; font-weight: 800; letter-spacing: .12em; color: #713f12; background: #fff; border: 2px dashed #fbbf24; border-radius: 8px; padding: 8px 14px; cursor: pointer; user-select: all; font-family: monospace; transition: background .15s; }
.mh-offer-code:hover { background: #fef3c7; }
.mh-offer-cta { display: inline-flex; align-items: center; gap: 6px; background: #d97706; color: #fff; font-size: 14px; font-weight: 700; padding: 11px 22px; border-radius: 99px; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background .15s; }
.mh-offer-cta:hover { background: #b45309; }

/* ── Static service pill (no link) ───────────────────────────────────────── */
.pp-svc-pill-static {
  cursor: default;
  pointer-events: none;
}

/* ── FAQ accordion ────────────────────────────────────────────────────────── */
.pp-faq { max-width: 720px; }
.pp-faq-item { border-top: 1px solid #e5e7eb; }
.pp-faq-item:last-child { border-bottom: 1px solid #e5e7eb; }
.pp-faq-q {
  font-size: 15px;
  font-weight: 600;
  color: #0f1a0f;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  user-select: none;
  transition: color .15s;
  margin: 0;
}
.pp-faq-q:hover { color: #16a34a; }
.pp-faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1;
  color: #16a34a;
  flex-shrink: 0;
  transition: all .2s;
}
.pp-faq-item.open .pp-faq-toggle {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
  transform: rotate(45deg);
}
.pp-faq-a {
  font-size: 14px;
  color: #52525b;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.pp-faq-item.open .pp-faq-a { max-height: 300px; padding-bottom: 18px; }

/* ── Sticky buy bar ───────────────────────────────────────────────────────── */
.pp-sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1.5px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transform: translateY(-100%);
  transition: transform .25s ease;
  padding: 10px 24px;
}
.pp-sticky-bar.visible { transform: translateY(0); }
.pp-sticky-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pp-sticky-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f1a0f;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pp-sticky-price {
  font-size: 15px;
  font-weight: 800;
  color: #16a34a;
  flex-shrink: 0;
}
.pp-sticky-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #16a34a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 99px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .15s;
}
.pp-sticky-cta:hover { background: #14532d; }
@media (max-width: 500px) {
  .pp-sticky-name { display: none; }
  .pp-sticky-price { font-size: 14px; }
}

/* ── Breadcrumb nav ───────────────────────────────────────────────────────── */
.pp-breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 24px;
}
.pp-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 12px;
  color: #9ca3af;
}
.pp-breadcrumbs a {
  color: #52525b;
  text-decoration: none;
  transition: color .15s;
}
.pp-breadcrumbs a:hover { color: #16a34a; }
.pp-bc-sep { color: #d1d5db; margin: 0 2px; }
.pp-bc-current { color: #0f1a0f; font-weight: 600; }

/* ── Trust badges ─────────────────────────────────────────────────────────── */
.pp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 99px;
  padding: 4px 12px;
}
.pp-trust-icon { font-size: 11px; }

/* ── Share buttons ────────────────────────────────────────────────────────── */
.pp-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.pp-share-label { font-size: 12px; color: #9ca3af; font-weight: 500; }
.pp-share-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  flex-shrink: 0;
}
.pp-share-btn:hover { opacity: .85; transform: scale(1.1); }
.pp-share-fb { background: #1877f2; color: #fff; }
.pp-share-wa { background: #25d366; color: #fff; }
.pp-share-tw { background: #000; color: #fff; font-family: serif; }
.pp-share-copy { background: #f3f4f6; color: #52525b; font-size: 16px; }