/* product-page-fakeids.css — Forked + reskinned product page for FakeIDs.com.
   Light "Comero" brand theme (white surfaces, charcoal #222 square buttons,
   gold #ffba0a star accent, Archivo font). Deliberately diverged from
   idgod.ph's dark/gold rounded theme so the two product pages look distinct.
   Internal --pp-* variable names kept; only their VALUES changed. */

/* === VARIABLES === */
.fpp {
  --pp-bg: #ffffff;
  --pp-card: #ffffff;
  --pp-card-alt: #f7f7f7;
  --pp-ink: #222222;
  --pp-muted: #666666;
  --pp-accent: #ffba0a;
  --pp-accent-hover: #d99e00;
  --pp-cta: #222222;
  --pp-cta-hover: #000000;
  --pp-line: #e3e3e3;
  --pp-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  --pp-radius: 2px;
  font-family: "Archivo", sans-serif;
  color: var(--pp-ink);
}

/* === HEADER === */
/* Mirrors Comero's .page-title-area: flat light-grey band (#f8f8f8),
   no dark hero image. Replaces idgod.ph's dark SVG header. */
.fpp-header-bg {
  background-image: none;
  background-color: #f8f8f8;
}

/* === HERO === */
.fpp-hero {
  display: grid;
  gap: 20px;
  padding: 24px 0 0;
}
.fpp-hero p {
  margin: 0;
  color: var(--pp-muted);
  max-width: 60ch;
  line-height: 1.6;
}
.fpp-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.fpp-badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(231, 178, 90, 0.15);
  color: var(--pp-accent);
  font-size: 0.85rem;
  font-weight: 600;
}

/* === PRODUCT LAYOUT === */
.fpp-layout {
  margin-top: 28px;
  display: grid;
  gap: 24px;
}

/* === CARDS === */
.fpp-card {
  background: var(--pp-card);
  border-radius: var(--pp-radius);
  padding: 20px;
  box-shadow: var(--pp-shadow);
  border: 1px solid var(--pp-line);
}

/* === GALLERY === */
.fpp-gallery {
  display: grid;
  gap: 14px;
  grid-template-areas:
    "panels"
    "thumbs";
}
.fpp-gallery-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.fpp-gallery-panels {
  grid-area: panels;
  position: relative;
  min-height: 240px;
}
.fpp-gallery-panel {
  display: none;
}
.fpp-gallery-panel figcaption {
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--pp-muted);
}
.fpp-media-frame {
  background: #f0ede6;
  border-radius: var(--pp-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border: 1px solid var(--pp-line);
}
.fpp-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fpp-gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.fpp-gallery-thumbs {
  grid-area: thumbs;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.fpp-thumb {
  width: 80px;
  border-radius: var(--pp-radius);
  overflow: hidden;
  border: 2px solid var(--pp-line);
  background: var(--pp-card-alt);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.fpp-thumb:hover {
  border-color: var(--pp-accent);
  transform: translateY(-2px);
}
.fpp-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
/* Single image fallback - no thumbs column */
.fpp-gallery-panels:only-child {
  grid-column: 1 / -1;
}

.fpp-gallery-empty {
  padding: 40px;
  text-align: center;
  border-radius: var(--pp-radius);
  border: 1px dashed var(--pp-line);
  color: var(--pp-muted);
  background: var(--pp-card-alt);
}

/* === INFO CARD === */
.fpp-info h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: var(--pp-ink);
}

/* Pricing table */
.fpp-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.fpp-pricing-table th,
.fpp-pricing-table td {
  padding: 10px 8px;
  text-align: center;
  border: 1px solid var(--pp-line);
  font-size: 0.9rem;
}
.fpp-pricing-table th {
  background: var(--pp-card-alt);
  color: var(--pp-accent);
  font-weight: 600;
  font-size: 0.82rem;
}
.fpp-pricing-table td {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pp-ink);
}
.fpp-price-note {
  color: var(--pp-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* CTA buttons */
.fpp-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.fpp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border: 2px solid transparent;
}
.fpp-btn-primary {
  background-color: #222222;
  color: #fff;
  border: 2px solid #222222;
}
.fpp-btn-primary:hover {
  background-color: transparent;
  color: #222222;
  border-color: #222222;
}
.fpp-btn-outline {
  background: transparent;
  color: #222222;
  border-color: #222222;
}
.fpp-btn-outline:hover {
  background: #222222;
  color: #fff;
}
.fpp-shipping-info {
  font-size: 0.82rem;
  color: var(--pp-muted);
  margin-top: 8px;
}

/* Feature chips (compact tags in info card) */
.fpp-feature-chips {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fpp-feature-chips li {
  padding: 5px 12px;
  border-radius: var(--pp-radius);
  background: var(--pp-card-alt);
  border: 1px solid var(--pp-line);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pp-accent);
}

/* Feature grid (full descriptions in content area) */
.fpp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.fpp-feature-item {
  background: var(--pp-card-alt);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 16px;
}
.fpp-feature-item h3 {
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--pp-accent);
}
.fpp-feature-item p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--pp-muted);
  line-height: 1.5;
}

/* Overview intro (summary text) */
.fpp-overview-intro {
  color: var(--pp-ink);
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.6;
}

/* Comparison table */
.fpp-comparison-wrap {
  overflow-x: auto;
}
.fpp-comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.fpp-comparison-table th,
.fpp-comparison-table td {
  padding: 12px 14px;
  text-align: left;
  border: 1px solid var(--pp-line);
  font-size: 0.9rem;
}
.fpp-comparison-table thead th {
  background: var(--pp-card-alt);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.fpp-comparison-table thead th:first-child {
  color: var(--pp-ink);
}
.fpp-comparison-table thead th:nth-child(2) {
  color: var(--pp-muted);
}
.fpp-comparison-table thead th:nth-child(3) {
  color: var(--pp-accent);
}
.fpp-comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--pp-ink);
}
.fpp-comparison-table tbody td:nth-child(2) {
  color: var(--pp-muted);
}
.fpp-comparison-table tbody td:nth-child(3) {
  color: var(--pp-accent);
  font-weight: 600;
}
.fpp-comparison-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 480px) {
  .fpp-comparison-table th,
  .fpp-comparison-table td {
    padding: 8px 10px;
    font-size: 0.82rem;
  }
}

/* Shipping options */
.fpp-shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.fpp-shipping-option {
  background: var(--pp-card-alt);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 16px;
  text-align: center;
  position: relative;
}
.fpp-shipping-option h3 {
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--pp-ink);
}
.fpp-shipping-option p {
  margin: 0;
  color: var(--pp-muted);
  font-size: 0.88rem;
}
.fpp-shipping-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pp-accent);
  margin: 4px 0;
}
.fpp-shipping-recommended {
  border-color: var(--pp-accent);
}
.fpp-shipping-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pp-accent);
  color: #202020;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 999px;
}
.fpp-shipping-note {
  font-size: 0.82rem;
  color: var(--pp-muted);
  margin-top: 12px;
}

/* === CONTENT SECTIONS === */
.fpp-content-grid {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}
.fpp-content-grid ~ .fpp-card {
  margin-top: 24px;
}
.fpp-section-title {
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: var(--pp-accent);
}
.fpp-content-grid p {
  color: var(--pp-muted);
  line-height: 1.6;
}

/* Included list */
.fpp-included-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--pp-ink);
}

/* Details/specs accordion */
.fpp-card details {
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 12px 16px;
  background: var(--pp-card-alt);
}
.fpp-card details + details {
  margin-top: 10px;
}
.fpp-card summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--pp-ink);
}
.fpp-card details p {
  margin-top: 8px;
}

/* Video */
.fpp-video-frame {
  border-radius: var(--pp-radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}
.fpp-video-frame video {
  width: 100%;
  height: 100%;
}

/* FAQ */
.fpp-faq-grid {
  display: grid;
  gap: 14px;
}
.fpp-faq-item {
  background: var(--pp-card-alt);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 14px 16px;
}
.fpp-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--pp-ink);
  list-style: none;
}
.fpp-faq-item summary::marker,
.fpp-faq-item summary::-webkit-details-marker {
  display: none;
}
.fpp-faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--pp-accent);
}
.fpp-faq-item[open] summary::after {
  content: "-";
}
.fpp-faq-item p {
  color: var(--pp-muted);
  margin-top: 8px;
}

/* Reviews card */
.fpp-reviews-card {
  border-left: 4px solid var(--pp-accent);
}
.fpp-reviews-card p {
  color: var(--pp-muted);
  line-height: 1.6;
}
.fpp-reviews-cta {
  margin-top: 14px;
}

/* Trust card */
.fpp-trust-card {
  margin-top: 24px;
  border-left: 4px solid var(--pp-cta);
}
.fpp-trust-card p {
  color: var(--pp-muted);
  line-height: 1.6;
}
.fpp-trust-points {
  padding-left: 18px;
  margin: 12px 0;
  color: var(--pp-ink);
}
.fpp-trust-points li {
  margin-bottom: 6px;
}
.fpp-trust-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.fpp-trust-links a {
  color: var(--pp-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  font-size: 0.9rem;
}
.fpp-trust-links a:hover {
  color: var(--pp-accent-hover);
}

/* Center helper */
.fpp-center {
  align-items: center;
  text-align: center;
}

/* Related products */
.fpp-related-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.fpp-related-card {
  border-radius: var(--pp-radius);
  border: 1px solid var(--pp-line);
  padding: 16px;
  background: var(--pp-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fpp-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}
.fpp-related-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: var(--pp-radius);
  background: #f0ede6;
  display: block;
}
.fpp-related-card h3 {
  font-size: 1.05rem;
  margin: 12px 0 8px;
}
.fpp-related-card h3 a {
  color: var(--pp-ink);
  text-decoration: none;
}
.fpp-related-card h3 a:hover {
  color: var(--pp-accent);
}
.fpp-related-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pp-accent);
  margin: 4px 0 12px;
}

/* Sticky CTA (mobile/tablet only) */
.fpp-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.97);
  border-top: 1px solid var(--pp-line);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  padding: 12px 18px;
  display: flex;
  justify-content: center;
  z-index: 30;
}
.fpp-sticky-cta .fpp-btn {
  width: min(420px, 100%);
}

/* Push floating WhatsApp/Telegram chat buttons up when the sticky CTA bar
   is present, so they don't sit on top of the order button on mobile.
   :has() is supported in all evergreen browsers since early 2024. */
@media (max-width: 991px) {
  body.has-native-chat:has(.fpp-sticky-cta) .idgod-chat-btn {
    bottom: 90px;
  }
}

/* Rating badge: replaces the previous inline-styled version.
   Two-row layout: stars + numeric score on the first row, count + CTA on
   the second. Reads as a trust signal at a glance and scales cleanly on
   small screens. */
.fpp-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem 0;
  padding: 0.45rem 0.85rem 0.45rem 0.65rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(245, 180, 0, 0.18), rgba(245, 180, 0, 0.08));
  border: 1px solid rgba(245, 180, 0, 0.55);
  color: #fff;
  text-decoration: none;
  line-height: 1.15;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fpp-rating-badge:hover,
.fpp-rating-badge:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(245, 180, 0, 0.26), rgba(245, 180, 0, 0.12));
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}
.fpp-rating-badge:focus-visible {
  outline: 2px solid #f5b400;
  outline-offset: 2px;
}
.fpp-rating-stars {
  color: #f5b400;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.fpp-rating-score {
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  padding-right: 0.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.fpp-rating-meta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
}
.fpp-rating-count {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.fpp-rating-link {
  color: #f5b400;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fpp-rating-link::after {
  content: " \2192";
}
@media (max-width: 480px) {
  .fpp-rating-badge {
    gap: 0.5rem;
    padding: 0.4rem 0.7rem 0.4rem 0.55rem;
  }
  .fpp-rating-stars {
    font-size: 0.95rem;
  }
  .fpp-rating-score {
    font-size: 1.05rem;
    padding-right: 0.5rem;
  }
  .fpp-rating-count {
    font-size: 0.72rem;
  }
  .fpp-rating-link {
    font-size: 0.66rem;
  }
}

/* Further reading: external authority links (E-E-A-T signal).
   Sits in the page flow above the sticky CTA. */
.fpp-resources {
  margin: 2rem 0 1rem;
  padding: 1.1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.fpp-resources-title {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
}
.fpp-resources-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
}
.fpp-resources-list a {
  color: #9ab;
  text-decoration: none;
  border-bottom: 1px solid rgba(154, 187, 204, 0.25);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.fpp-resources-list a:hover,
.fpp-resources-list a:focus-visible {
  color: #cde;
  border-bottom-color: rgba(204, 221, 238, 0.6);
}
@media (max-width: 480px) {
  .fpp-resources {
    margin: 1.5rem 0 0.75rem;
    padding: 0.9rem 0;
  }
  .fpp-resources-list {
    gap: 0.55rem 1.2rem;
  }
}

/* PhotoSwipe body lock */
body.pswp-open {
  overflow: hidden;
}

/* === RESPONSIVE === */

/* Desktop */
@media (min-width: 900px) {
  .fpp-hero {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
  }
  .fpp-layout {
    grid-template-columns: 1.4fr 0.9fr;
  }
  .fpp-gallery:has(.fpp-gallery-thumbs) {
    grid-template-areas: "thumbs panels";
    grid-template-columns: 100px 1fr;
    align-items: start;
  }
  .fpp-gallery-thumbs {
    flex-direction: column;
  }
  .fpp-sticky-cta {
    display: none;
  }
}
@media (min-width: 900px) and (max-width: 1024px) {
  .fpp-sticky-cta {
    display: flex;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  body.has-native-chat .idgod-chat-btn {
    bottom: 64px !important;
  }
  .fpp-sticky-cta {
    padding: 8px 12px;
  }
  .fpp-sticky-cta .fpp-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
@media (max-width: 1024px) {
  body.has-native-chat footer.footer {
    margin-bottom: 3rem !important;
  }
  .fpp {
    padding-bottom: 80px;
  }
}

/* Small screens */
@media (max-width: 767px) {
  .fpp-card {
    box-shadow: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .fpp-reviews-card {
    border-left: 4px solid var(--pp-accent);
  }
  .fpp-trust-card {
    border-left: 4px solid var(--pp-cta);
  }
  .fpp-layout {
    gap: 2px;
  }
  .fpp-content-grid {
    gap: 2px;
    margin-top: 2px;
  }
  .fpp-content-grid ~ .fpp-card {
    margin-top: 2px;
  }
  .fpp-pricing-table th,
  .fpp-pricing-table td {
    padding: 8px 4px;
    font-size: 0.78rem;
  }
  .fpp-pricing-table td {
    font-size: 0.9rem;
  }
  .fpp-shipping-grid {
    grid-template-columns: 1fr;
  }
  .fpp-feature-grid {
    grid-template-columns: 1fr;
  }
  .fpp-related-grid {
    grid-template-columns: 1fr;
  }
  .fpp {
    padding-bottom: 80px;
  }
}

/* ============================================================
   FAKEIDS LIGHT-THEME RESKIN OVERRIDES
   The rules above were inherited from the idgod.ph dark theme and
   assume light text on dark surfaces. These overrides re-point the
   dark-theme color choices to FakeIDs.com's light/charcoal/gold
   brand and keep everything readable on white cards.
   ============================================================ */

/* Section titles: mirrors Comero's .section-title h2 treatment — charcoal
   heading with a charcoal square accent block on the left (the site uses a
   charcoal ".dot" marker, not a gold one). Gold is reserved for star ratings
   like the rest of fakeids.com. */
.fpp-section-title {
  color: var(--pp-ink);
  border-left: 4px solid #222222;
  padding-left: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
}

/* Info card heading + overview intro readable on white */
.fpp-info h2 { color: var(--pp-ink); }
.fpp-overview-intro { color: var(--pp-ink); }

/* Badges: solid charcoal pill with gold text (was gold-on-dark) */
.fpp-badge {
  background: #222222;
  color: var(--pp-accent);
}

/* Pricing table: dark readable header + cells on light */
.fpp-pricing-table th {
  background: var(--pp-card-alt);
  color: var(--pp-ink);
}
.fpp-pricing-table td { color: var(--pp-ink); }

/* Feature chips + cards on white */
.fpp-feature-chips li { color: var(--pp-ink); }
.fpp-feature-item h3 { color: var(--pp-ink); }

/* Comparison table: keep the third "Our Replica" column emphasized
   but with charcoal text (gold-on-white is unreadable) */
.fpp-comparison-table thead th { color: var(--pp-ink); }
.fpp-comparison-table thead th:nth-child(3) { color: var(--pp-ink); }
.fpp-comparison-table tbody td:nth-child(3) { color: var(--pp-ink); }
.fpp-comparison-table tbody tr:nth-child(even) { background: #fafafa; }

/* Shipping: dark price, gold tag on charcoal, charcoal highlight border */
.fpp-shipping-price { color: var(--pp-ink); }
.fpp-shipping-tag {
  background: #222222;
  color: var(--pp-accent);
}
.fpp-shipping-recommended {
  border-color: #222222;
  box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.06);
}

/* Details / FAQ accordions on light surfaces */
.fpp-card summary { color: var(--pp-ink); }
.fpp-faq-item summary { color: var(--pp-ink); }
.fpp-faq-item summary::after { color: var(--pp-accent); }

/* Lists */
.fpp-included-list { color: var(--pp-ink); }
.fpp-trust-points { color: var(--pp-ink); }

/* Reviews + trust accent rails recolored for the light theme */
.fpp-reviews-card { border-left: 4px solid var(--pp-accent); }
.fpp-trust-card { border-left: 4px solid #222222; }
.fpp-trust-links a {
  color: #222222;
  text-decoration-color: var(--pp-accent);
}
.fpp-trust-links a:hover { color: #000; }

/* Related product cards */
.fpp-related-card { background: #fff; }
.fpp-related-card h3 a { color: var(--pp-ink); }
.fpp-related-card h3 a:hover { color: var(--pp-accent-hover); }
.fpp-related-price { color: var(--pp-ink); }

/* Sticky mobile CTA: light bar instead of near-black */
.fpp-sticky-cta {
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--pp-line);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
}

/* Rating badge: light-card version (dark text, gold frame) */
.fpp-rating-badge {
  background: linear-gradient(180deg, rgba(255, 186, 10, 0.18), rgba(255, 186, 10, 0.07));
  border: 1px solid rgba(255, 186, 10, 0.75);
  color: #222222;
}
.fpp-rating-badge:hover,
.fpp-rating-badge:focus-visible {
  background: linear-gradient(180deg, rgba(255, 186, 10, 0.30), rgba(255, 186, 10, 0.14));
}
.fpp-rating-stars { color: #f5a800; text-shadow: none; }
.fpp-rating-score {
  color: #222222;
  border-right: 1px solid rgba(34, 34, 34, 0.18);
}
.fpp-rating-count { color: #555; }
.fpp-rating-link { color: #b07a00; }

/* Further-reading block on light background */
.fpp-resources {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #555;
}
.fpp-resources-title { color: #222; }
.fpp-resources-list a {
  color: #444;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.fpp-resources-list a:hover,
.fpp-resources-list a:focus-visible {
  color: #000;
  border-bottom-color: rgba(0, 0, 0, 0.55);
}

/* Small-screen accent rails follow the light palette */
@media (max-width: 767px) {
  .fpp-reviews-card { border-left: 4px solid var(--pp-accent); }
  .fpp-trust-card { border-left: 4px solid #222222; }
}
