/* Nova Product Content Framework v2.0.3
 * Namespace: npcf-
 * Lightweight, no external assets.
 */

.npcf-wrapper{
  --npcf-text:#334155;
  --npcf-heading:#0f172a;
  --npcf-muted:#64748b;
  --npcf-border:#e5e7eb;
  --npcf-soft:#fdf8f0;
  --npcf-card:#ffffff;
  --npcf-accent:#7a2e2e;
  --npcf-accent-dark:#5f2323;
  --npcf-accent-warm:#ea6826;
  --npcf-shadow:0 8px 24px rgba(15,23,42,.06);
  color:var(--npcf-text);
  font-family:inherit;
  font-size:16px;
  line-height:1.7;
}

.npcf-wrapper *{box-sizing:border-box;}
.npcf-wrapper p{margin:0 0 14px;}
.npcf-wrapper h2{
  color:var(--npcf-heading);
  font-size:22px;
  line-height:1.3;
  margin:26px 0 14px;
  font-weight:800;
}
.npcf-wrapper h3{
  color:var(--npcf-heading);
  font-size:17px;
  line-height:1.35;
  margin:0 0 10px;
  font-weight:700;
}

.npcf-wrapper a,
.npcf-link{
  color:var(--npcf-accent) !important;
  font-weight:900;
  text-decoration:underline !important;
  text-underline-offset:4px;
  text-decoration-thickness:2px;
  text-decoration-color:rgba(122,46,46,.45);
  background:linear-gradient(180deg, transparent 64%, rgba(234,104,38,.14) 0);
  border-radius:3px;
}
.npcf-wrapper a:hover,
.npcf-wrapper a:focus,
.npcf-link:hover,
.npcf-link:focus{
  color:var(--npcf-accent-warm) !important;
  text-decoration-color:currentColor;
}
.npcf-wrapper a:focus,
.npcf-link:focus{outline:2px solid currentColor;outline-offset:2px;}

.npcf-spec-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin:14px 0 16px;
}
.npcf-spec-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:94px;
  padding:14px 10px;
  background:var(--npcf-soft);
  border:1px solid var(--npcf-border);
  border-radius:14px;
}
.npcf-spec-label,
.npcf-spec-card span{
  display:block;
  font-size:13px;
  font-weight:800;
  color:var(--npcf-accent);
  margin-bottom:7px;
  letter-spacing:.01em;
}
.npcf-spec-value,
.npcf-spec-card strong{
  display:block;
  font-size:15px;
  line-height:1.35;
  color:var(--npcf-heading);
  font-weight:800;
  white-space:nowrap;
}

/* Supports both names used in early HTML drafts */
.npcf-snapshot,
.npcf-snapshot-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:14px 0 20px;
}
.npcf-snapshot-item,
.npcf-snapshot-card{
  text-align:center;
  padding:13px 10px;
  border-radius:14px;
  background:var(--npcf-soft);
  border:1px solid var(--npcf-border);
}
.npcf-snapshot-item span,
.npcf-snapshot-card span{
  display:block;
  font-size:13px;
  font-weight:800;
  color:var(--npcf-accent);
  margin-bottom:5px;
}
.npcf-snapshot-item strong,
.npcf-snapshot-card strong{
  display:block;
  color:var(--npcf-heading);
  font-size:15px;
  line-height:1.4;
  font-weight:800;
}

.npcf-card{
  background:var(--npcf-card);
  border:1px solid var(--npcf-border);
  border-radius:16px;
  padding:16px;
  margin:14px 0;
  box-shadow:var(--npcf-shadow);
}
.npcf-card ul,
.npcf-wrapper ul{margin:8px 0 0 20px;padding:0;}
.npcf-card li,
.npcf-wrapper li{margin:6px 0;}
.npcf-checklist ul{list-style:none;margin-left:0;}
.npcf-checklist li{padding-left:0;}

.npcf-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin:14px 0;
}
.npcf-trust,
.npcf-trust-card{
  text-align:center;
  background:var(--npcf-soft);
  border:1px solid var(--npcf-border);
  border-radius:14px;
  padding:13px 10px;
  color:var(--npcf-text);
  font-size:14px;
  line-height:1.45;
}
.npcf-trust strong,
.npcf-trust-card strong{display:block;color:var(--npcf-heading);margin-bottom:4px;}
.npcf-trust span,
.npcf-trust-card span{display:block;}

.npcf-cta-wrap{text-align:center;margin-top:20px;}
.npcf-button,
.npcf-wrapper .npcf-button,
.npcf-wrapper button.npcf-button{
  appearance:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 24px;
  border-radius:999px;
  background:var(--npcf-accent);
  color:#fff !important;
  border:1px solid var(--npcf-accent);
  font-weight:800;
  line-height:1;
  text-decoration:none;
  box-shadow:none;
}
.npcf-button:hover,
.npcf-button:focus,
.npcf-wrapper .npcf-button:hover,
.npcf-wrapper .npcf-button:focus{
  background:var(--npcf-accent-dark);
  border-color:var(--npcf-accent-dark);
  color:#fff !important;
}
.npcf-button:focus{outline:3px solid rgba(122,46,46,.25);outline-offset:3px;}
.npcf-button.is-loading{opacity:.72;pointer-events:none;}

.npcf-seo-table{width:100%;border-collapse:collapse;margin:12px 0 20px;font-size:14px;}
.npcf-seo-table th,
.npcf-seo-table td{border:1px solid var(--npcf-border);padding:10px;vertical-align:top;}
.npcf-seo-table th{background:var(--npcf-soft);color:var(--npcf-heading);text-align:left;}

@media(max-width:900px){
  .npcf-spec-grid,
  .npcf-trust-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:600px){
  .npcf-wrapper{font-size:15px;line-height:1.65;}
  .npcf-wrapper h2{font-size:20px;}
  .npcf-spec-grid,
  .npcf-snapshot,
  .npcf-snapshot-grid,
  .npcf-trust-grid{grid-template-columns:1fr;}
  .npcf-spec-value,
  .npcf-spec-card strong{white-space:normal;}
  .npcf-card{padding:14px;}
}

/* v3.0.1 Compatibility Restoration + Collector Conversion Engine
 * The original v2.0.3 framework above is intentionally preserved intact.
 * New rules are isolated to conversion components and explicit legacy selectors.
 */

/* Strong, underlined content links for both current and legacy descriptions. */
.npcf-wrapper a:not(.npcf-pathway-card):not(.npcf-button),
.npcf-wrapper .npcf-link,
.pd-wrapper .pd-link,
.pd-wrapper a.pd-link {
  font-weight:800 !important;
  text-decoration:underline !important;
  text-underline-offset:4px !important;
  text-decoration-thickness:2px !important;
}
.npcf-wrapper a:not(.npcf-pathway-card):not(.npcf-button):hover,
.npcf-wrapper a:not(.npcf-pathway-card):not(.npcf-button):focus,
.npcf-wrapper .npcf-link:hover,
.npcf-wrapper .npcf-link:focus,
.pd-wrapper .pd-link:hover,
.pd-wrapper .pd-link:focus,
.pd-wrapper a.pd-link:hover,
.pd-wrapper a.pd-link:focus {
  text-decoration:underline !important;
  text-decoration-color:currentColor !important;
}

/* Add-to-cart buttons: warm gold hover with guaranteed dark readable text. */
.npcf-wrapper #npcf-add-to-cart-btn,
.npcf-wrapper #pd-add-to-cart-btn,
.npcf-wrapper .npcf-button,
.npcf-wrapper .pd-cta,
.pd-wrapper #pd-add-to-cart-btn,
.pd-wrapper #npcf-add-to-cart-btn,
.pd-wrapper .pd-cta,
.pd-wrapper .npcf-button {
  transition:background-color .2s ease,border-color .2s ease,color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.npcf-wrapper #npcf-add-to-cart-btn:hover,
.npcf-wrapper #npcf-add-to-cart-btn:focus,
.npcf-wrapper #pd-add-to-cart-btn:hover,
.npcf-wrapper #pd-add-to-cart-btn:focus,
.npcf-wrapper .npcf-button:hover,
.npcf-wrapper .npcf-button:focus,
.npcf-wrapper .pd-cta:hover,
.npcf-wrapper .pd-cta:focus,
.pd-wrapper #pd-add-to-cart-btn:hover,
.pd-wrapper #pd-add-to-cart-btn:focus,
.pd-wrapper #npcf-add-to-cart-btn:hover,
.pd-wrapper #npcf-add-to-cart-btn:focus,
.pd-wrapper .pd-cta:hover,
.pd-wrapper .pd-cta:focus,
.pd-wrapper .npcf-button:hover,
.pd-wrapper .npcf-button:focus {
  background:#f8bd76 !important;
  background-color:#f8bd76 !important;
  border-color:#f8bd76 !important;
  color:#1f2937 !important;
  text-shadow:none !important;
}

.npcf-conversion-engine{font-family:inherit;box-sizing:border-box;}
.npcf-decision-block{
  margin:18px 0 24px;
  padding:18px;
  border:1px solid var(--npcf-border,#e5e7eb);
  border-left:5px solid var(--npcf-accent,#7a2e2e);
  border-radius:16px;
  background:linear-gradient(135deg,var(--npcf-soft,#fdf8f0),#fff);
  box-shadow:var(--npcf-shadow,0 8px 24px rgba(15,23,42,.06));
}
.npcf-decision-heading h2,.npcf-pathway-heading h2{margin:3px 0 12px!important;}
.npcf-decision-kicker{display:block;color:var(--npcf-accent,#7a2e2e);font-size:12px;font-weight:900;letter-spacing:.07em;text-transform:uppercase;}
.npcf-decision-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px 16px;list-style:none!important;margin:0!important;padding:0!important;}
.npcf-decision-list li{display:flex;align-items:flex-start;gap:8px;margin:0!important;color:var(--npcf-heading,#0f172a);font-weight:700;}
.npcf-decision-list li span{color:var(--npcf-accent-warm,#ea6826);font-weight:900;}
.npcf-pathway-block{margin:30px 0 22px;padding:20px;border:1px solid var(--npcf-border,#e5e7eb);border-radius:18px;background:#fff;box-shadow:var(--npcf-shadow,0 8px 24px rgba(15,23,42,.06));}
.npcf-pathway-heading p{margin:0 0 15px;color:var(--npcf-muted,#64748b);}
.npcf-pathway-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;}
.npcf-pathway-card{display:flex!important;flex-direction:column;text-decoration:none!important;background:var(--npcf-soft,#fdf8f0)!important;border:1px solid var(--npcf-border,#e5e7eb);border-radius:14px;overflow:hidden;color:var(--npcf-heading,#0f172a)!important;transition:transform .2s ease,box-shadow .2s ease;}
.npcf-pathway-card:hover{transform:translateY(-3px);box-shadow:0 8px 20px rgba(15,23,42,.09);}
.npcf-pathway-image{display:block;aspect-ratio:4/3;background:#fff;overflow:hidden;}
.npcf-pathway-image img{width:100%!important;height:100%!important;object-fit:contain!important;margin:0!important;border-radius:0!important;}
.npcf-pathway-title{padding:10px 10px 4px;font-size:13px;line-height:1.35;font-weight:800;}
.npcf-pathway-price{padding:0 10px 11px;color:var(--npcf-accent,#7a2e2e);font-size:13px;font-weight:900;}
.npcf-confidence-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:18px 0 8px;}
.npcf-confidence-strip>div{text-align:center;padding:12px 10px;border:1px solid var(--npcf-border,#e5e7eb);border-radius:13px;background:var(--npcf-soft,#fdf8f0);}
.npcf-confidence-strip strong{display:block;color:var(--npcf-heading,#0f172a);font-size:14px;margin-bottom:3px;}
.npcf-confidence-strip span{display:block;color:var(--npcf-muted,#64748b);font-size:12px;line-height:1.35;}
.pd-wrapper .npcf-conversion-engine{--npcf-text:#334155;--npcf-heading:#0f172a;--npcf-muted:#64748b;--npcf-border:#e5e7eb;--npcf-soft:#fdf8f0;--npcf-accent:#7a2e2e;--npcf-accent-warm:#ea6826;--npcf-shadow:0 8px 24px rgba(15,23,42,.06);}
@media(max-width:900px){.npcf-pathway-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:600px){
  .npcf-decision-block,.npcf-pathway-block{padding:15px;margin:16px 0 20px;}
  .npcf-decision-list{grid-template-columns:1fr;gap:8px;}
  .npcf-pathway-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;}
  .npcf-confidence-strip{grid-template-columns:1fr;}
  .npcf-pathway-title{font-size:12px;}
}

/* v3.2.0 Adaptive Reading Mode
 * The complete content remains in the HTML. These rules only improve how
 * long collector research sections are presented to human readers.
 */
.npcf-reading-toolbar{
  display:flex;
  justify-content:flex-end;
  margin:18px 0 10px;
}
.npcf-reading-toggle{
  appearance:none;
  border:1px solid var(--npcf-border,#e5e7eb);
  background:#fff;
  color:var(--npcf-accent,#7a2e2e);
  border-radius:999px;
  padding:8px 14px;
  font:inherit;
  font-size:13px;
  font-weight:800;
  line-height:1.2;
  cursor:pointer;
}
.npcf-reading-toggle:hover,
.npcf-reading-toggle:focus{
  background:var(--npcf-soft,#fdf8f0);
  border-color:var(--npcf-accent,#7a2e2e);
  outline:none;
}
.npcf-reading-toggle:focus-visible{
  box-shadow:0 0 0 3px rgba(122,46,46,.18);
}
.npcf-adaptive-section{
  margin:12px 0;
  border:1px solid var(--npcf-border,#e5e7eb);
  border-radius:14px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 4px 14px rgba(15,23,42,.04);
}
.npcf-adaptive-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:15px 17px;
  cursor:pointer;
  list-style:none;
  color:var(--npcf-heading,#0f172a);
  background:linear-gradient(135deg,var(--npcf-soft,#fdf8f0),#fff);
  font-weight:800;
}
.npcf-adaptive-summary::-webkit-details-marker{display:none;}
.npcf-adaptive-summary::marker{display:none;content:'';}
.npcf-adaptive-title{font-size:17px;line-height:1.35;}
.npcf-adaptive-hint{
  flex:0 0 auto;
  display:inline-flex;
  width:28px;
  height:28px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--npcf-border,#e5e7eb);
  color:var(--npcf-accent,#7a2e2e);
  font-size:18px;
  line-height:1;
  transition:transform .2s ease;
}
.npcf-adaptive-section[open] .npcf-adaptive-hint{transform:rotate(45deg);}
.npcf-adaptive-summary:hover,
.npcf-adaptive-summary:focus{background:var(--npcf-soft,#fdf8f0);outline:none;}
.npcf-adaptive-summary:focus-visible{box-shadow:inset 0 0 0 3px rgba(122,46,46,.16);}
.npcf-adaptive-body{padding:4px 17px 17px;}
.npcf-adaptive-body > :first-child{margin-top:10px;}
.npcf-adaptive-body > :last-child{margin-bottom:0;}
.npcf-adaptive-body .npcf-card,
.npcf-adaptive-body .pd-note-card{margin-top:10px;margin-bottom:10px;}
@media(max-width:600px){
  .npcf-reading-toolbar{justify-content:stretch;}
  .npcf-reading-toggle{width:100%;min-height:42px;}
  .npcf-adaptive-summary{padding:14px;}
  .npcf-adaptive-title{font-size:16px;}
  .npcf-adaptive-body{padding:3px 14px 15px;}
}
@media print{
  .npcf-reading-toolbar{display:none!important;}
  .npcf-adaptive-section{display:block!important;border:0!important;box-shadow:none!important;}
  .npcf-adaptive-summary{background:none!important;padding:10px 0!important;}
  .npcf-adaptive-hint{display:none!important;}
  .npcf-adaptive-body{display:block!important;padding:0!important;}
}

/* v3.5.0 Content Simplification Phase */
.npcf-content-simplified .npcf-simplified-section{
  margin:22px 0;
  padding:20px;
  border:1px solid var(--npcf-border,#e5e7eb);
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 24px rgba(15,23,42,.04);
}
.npcf-content-simplified .npcf-simplified-title{
  margin:0 0 12px !important;
  font-size:clamp(20px,2.4vw,26px);
  line-height:1.25;
}
.npcf-content-simplified .npcf-simplified-body > :first-child{margin-top:0 !important;}
.npcf-content-simplified .npcf-simplified-body > :last-child{margin-bottom:0 !important;}
.npcf-content-simplified .npcf-simplified-body p,
.npcf-content-simplified .npcf-simplified-body ul,
.npcf-content-simplified .npcf-simplified-body ol{margin-top:10px;margin-bottom:10px;}
.npcf-content-simplified .npcf-simplified-body .npcf-card,
.npcf-content-simplified .npcf-simplified-body .pd-card{
  margin:10px 0;
  box-shadow:none;
}
.npcf-runtime-content{display:block;}
@media(max-width:600px){
  .npcf-content-simplified .npcf-simplified-section{margin:16px 0;padding:15px;border-radius:12px;}
  .npcf-content-simplified .npcf-simplified-title{font-size:20px;}
}


/* v3.5.1 Deep Content Reduction */
.npcf-deep-reduced .npcf-simplified-section{
  margin:16px 0;
  padding:18px;
  border:1px solid var(--npcf-border,#e5e7eb);
  border-radius:16px;
  background:var(--npcf-card,#fff);
}
.npcf-deep-reduced .npcf-simplified-title{margin:0 0 10px!important;}
.npcf-deep-reduced .npcf-simplified-body > :first-child{margin-top:0!important;}
.npcf-deep-reduced .npcf-simplified-body > :last-child{margin-bottom:0!important;}
.npcf-deep-reduced .npcf-story-highlights{margin:8px 0 0 20px;padding:0;}
.npcf-deep-reduced .npcf-story-highlights li{margin:7px 0;}
.npcf-deep-reduced > section,
.npcf-deep-reduced > article,
.npcf-deep-reduced > .npcf-card,
.npcf-deep-reduced > .pd-card{margin-top:16px!important;margin-bottom:16px!important;}
@media(max-width:600px){
  .npcf-deep-reduced .npcf-simplified-section{padding:15px;margin:13px 0;}
}

/* ========================================================================
 * v3.7.0 — Unified Collector UI (Phase 1)
 * Presentation-only compatibility layer for current npcf-* and legacy pd-*
 * product descriptions. No content, database, or WooCommerce form styles.
 * ====================================================================== */
.npcf-wrapper,
.pd-wrapper{
  --npcf-text:#334155;
  --npcf-heading:#0f172a;
  --npcf-muted:#64748b;
  --npcf-border:#e3e7eb;
  --npcf-border-warm:#edc99e;
  --npcf-soft:#fdf9f2;
  --npcf-card:#ffffff;
  --npcf-accent:#7a2e2e;
  --npcf-accent-dark:#5f2323;
  --npcf-accent-warm:#ea6826;
  --npcf-gold:#f8bd76;
  --npcf-radius:16px;
  --npcf-shadow:0 10px 28px rgba(15,23,42,.055);
  --npcf-shadow-hover:0 14px 34px rgba(15,23,42,.085);
  color:var(--npcf-text);
  font-family:inherit;
  font-size:16px;
  line-height:1.72;
}
.npcf-wrapper *,
.pd-wrapper *{box-sizing:border-box;}
.npcf-wrapper > :first-child,
.pd-wrapper > :first-child{margin-top:0;}
.npcf-wrapper > :last-child,
.pd-wrapper > :last-child{margin-bottom:0;}
.npcf-wrapper p,
.pd-wrapper p{margin:0 0 14px;}
.npcf-wrapper h2,
.pd-wrapper h2{
  margin:30px 0 14px;
  color:var(--npcf-heading);
  font-size:clamp(21px,2vw,25px);
  line-height:1.28;
  font-weight:800;
  letter-spacing:-.015em;
}
.npcf-wrapper h3,
.pd-wrapper h3{
  margin:0 0 11px;
  color:var(--npcf-heading);
  font-size:17px;
  line-height:1.4;
  font-weight:800;
}
.npcf-wrapper ul,
.npcf-wrapper ol,
.pd-wrapper ul,
.pd-wrapper ol{margin:10px 0 0 21px;padding:0;}
.npcf-wrapper li,
.pd-wrapper li{margin:7px 0;}

/* One card language for both generations of product HTML. */
.npcf-wrapper .npcf-card,
.npcf-wrapper .pd-note-card,
.pd-wrapper .npcf-card,
.pd-wrapper .pd-note-card{
  position:relative;
  margin:15px 0;
  padding:19px 20px;
  overflow:hidden;
  background:var(--npcf-card);
  border:1px solid var(--npcf-border);
  border-radius:var(--npcf-radius);
  box-shadow:var(--npcf-shadow);
  color:var(--npcf-text);
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;
}
.npcf-wrapper .npcf-card:hover,
.npcf-wrapper .pd-note-card:hover,
.pd-wrapper .npcf-card:hover,
.pd-wrapper .pd-note-card:hover{
  border-color:#d7dde3;
  box-shadow:var(--npcf-shadow-hover);
  transform:translateY(-1px);
}
.npcf-wrapper .npcf-card > :first-child,
.npcf-wrapper .pd-note-card > :first-child,
.pd-wrapper .npcf-card > :first-child,
.pd-wrapper .pd-note-card > :first-child{margin-top:0;}
.npcf-wrapper .npcf-card > :last-child,
.npcf-wrapper .pd-note-card > :last-child,
.pd-wrapper .npcf-card > :last-child,
.pd-wrapper .pd-note-card > :last-child{margin-bottom:0;}

/* Design Highlights / Design Features are marked by v3.7.0 JavaScript. */
.npcf-wrapper .npcf-design-card,
.pd-wrapper .npcf-design-card{
  padding-left:22px;
  border-color:var(--npcf-border-warm);
  background:linear-gradient(135deg,#fff 0%,#fff 74%,rgba(248,189,118,.07) 100%);
}
.npcf-wrapper .npcf-design-card::before,
.pd-wrapper .npcf-design-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background:linear-gradient(180deg,var(--npcf-accent),var(--npcf-accent-warm));
}
.npcf-wrapper .npcf-design-card h3,
.pd-wrapper .npcf-design-card h3{
  margin-bottom:13px;
  font-size:18px;
  line-height:1.38;
}
.npcf-wrapper .npcf-design-card strong,
.pd-wrapper .npcf-design-card strong{color:var(--npcf-heading);font-weight:800;}
.npcf-wrapper .npcf-design-card ul,
.pd-wrapper .npcf-design-card ul{margin-top:8px;}
.npcf-wrapper .npcf-design-card li,
.pd-wrapper .npcf-design-card li{padding-left:2px;}

/* Collector Snapshot: four balanced cards where space permits. */
.npcf-wrapper .npcf-snapshot,
.npcf-wrapper .npcf-snapshot-grid,
.pd-wrapper .npcf-snapshot,
.pd-wrapper .npcf-snapshot-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin:14px 0 22px;
}
.npcf-wrapper .npcf-snapshot-item,
.npcf-wrapper .npcf-snapshot-card,
.pd-wrapper .npcf-snapshot-item,
.pd-wrapper .npcf-snapshot-card{
  display:flex;
  min-width:0;
  min-height:96px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:14px 11px;
  text-align:center;
  background:linear-gradient(145deg,var(--npcf-soft),#fff);
  border:1px solid var(--npcf-border);
  border-radius:15px;
  box-shadow:0 5px 16px rgba(15,23,42,.035);
  color:var(--npcf-muted);
  font-size:12px;
  font-weight:800;
  line-height:1.35;
  text-transform:none;
}
.npcf-wrapper .npcf-snapshot-item strong,
.npcf-wrapper .npcf-snapshot-card strong,
.pd-wrapper .npcf-snapshot-item strong,
.pd-wrapper .npcf-snapshot-card strong{
  display:block;
  max-width:100%;
  overflow-wrap:anywhere;
  color:var(--npcf-heading);
  font-size:15px;
  line-height:1.35;
  font-weight:800;
}

/* Specifications and What's Included — current and legacy grids. */
.npcf-wrapper .npcf-spec-grid,
.npcf-wrapper .pd-specs,
.pd-wrapper .npcf-spec-grid,
.pd-wrapper .pd-specs{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin:14px 0 18px;
}
.npcf-wrapper .npcf-spec-card,
.npcf-wrapper .pd-spec,
.pd-wrapper .npcf-spec-card,
.pd-wrapper .pd-spec{
  display:flex;
  min-width:0;
  min-height:94px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:14px 11px;
  text-align:center;
  background:linear-gradient(145deg,var(--npcf-soft),#fff);
  border:1px solid var(--npcf-border);
  border-radius:15px;
  box-shadow:0 5px 16px rgba(15,23,42,.035);
  color:var(--npcf-text);
  font-size:14px;
  line-height:1.4;
}
.npcf-wrapper .npcf-spec-label,
.npcf-wrapper .npcf-spec-card > span,
.pd-wrapper .npcf-spec-label,
.pd-wrapper .npcf-spec-card > span{
  margin-bottom:6px;
  color:var(--npcf-accent);
  font-size:14px;
  font-weight:800;
}
.npcf-wrapper .npcf-spec-value,
.npcf-wrapper .npcf-spec-card > strong,
.pd-wrapper .npcf-spec-value,
.pd-wrapper .npcf-spec-card > strong{
  max-width:100%;
  white-space:normal;
  overflow-wrap:anywhere;
  color:var(--npcf-heading);
  font-size:15px;
  font-weight:800;
}
.npcf-wrapper .pd-spec strong,
.pd-wrapper .pd-spec strong{display:block;margin-bottom:4px;color:var(--npcf-heading);}

/* Unified trust grid. */
.npcf-wrapper .npcf-trust-grid,
.npcf-wrapper .pd-trust-grid,
.pd-wrapper .npcf-trust-grid,
.pd-wrapper .pd-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin:14px 0 18px;
}
.npcf-wrapper .npcf-trust,
.npcf-wrapper .npcf-trust-card,
.npcf-wrapper .pd-trust,
.pd-wrapper .npcf-trust,
.pd-wrapper .npcf-trust-card,
.pd-wrapper .pd-trust{
  display:flex;
  min-width:0;
  min-height:102px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:14px 10px;
  text-align:center;
  background:linear-gradient(145deg,var(--npcf-soft),#fff);
  border:1px solid var(--npcf-border);
  border-radius:15px;
  box-shadow:0 5px 16px rgba(15,23,42,.035);
  color:var(--npcf-text);
  font-size:13px;
  line-height:1.45;
}
.npcf-wrapper .npcf-trust strong,
.npcf-wrapper .npcf-trust-card strong,
.npcf-wrapper .pd-trust strong,
.pd-wrapper .npcf-trust strong,
.pd-wrapper .npcf-trust-card strong,
.pd-wrapper .pd-trust strong{
  display:block;
  margin-bottom:6px;
  color:var(--npcf-heading);
  font-size:14px;
  line-height:1.35;
  font-weight:800;
}

/* Quick Collector Decision — visual refinement only. */
.npcf-wrapper .npcf-decision-block,
.pd-wrapper .npcf-decision-block{
  margin:18px 0 27px;
  padding:20px 21px;
  border:1px solid var(--npcf-border);
  border-left:4px solid var(--npcf-accent);
  border-radius:var(--npcf-radius);
  background:linear-gradient(135deg,var(--npcf-soft),#fff 72%);
  box-shadow:var(--npcf-shadow);
}
.npcf-wrapper .npcf-decision-kicker,
.pd-wrapper .npcf-decision-kicker{letter-spacing:.08em;}
.npcf-wrapper .npcf-decision-list,
.pd-wrapper .npcf-decision-list{gap:9px 16px;}
.npcf-wrapper .npcf-decision-list li,
.pd-wrapper .npcf-decision-list li{line-height:1.45;}
.npcf-wrapper .npcf-decision-list li::before,
.pd-wrapper .npcf-decision-list li::before{font-size:12px;}

/* Final in-description CTA. JS only marks an existing parent; it creates none. */
.npcf-wrapper .npcf-cta-wrap,
.pd-wrapper .npcf-cta-wrap,
.npcf-wrapper .npcf-cta-enhanced,
.pd-wrapper .npcf-cta-enhanced{
  width:min(100%,760px);
  margin:30px auto 4px !important;
  padding:24px 22px;
  text-align:center !important;
  background:linear-gradient(135deg,var(--npcf-soft),#fff 68%);
  border:1px solid var(--npcf-border-warm);
  border-radius:18px;
  box-shadow:var(--npcf-shadow);
}
.npcf-wrapper .npcf-cta-wrap p,
.pd-wrapper .npcf-cta-wrap p,
.npcf-wrapper .npcf-cta-enhanced p,
.pd-wrapper .npcf-cta-enhanced p{margin:0 0 14px !important;}
.npcf-wrapper .npcf-cta-wrap > strong,
.pd-wrapper .npcf-cta-wrap > strong,
.npcf-wrapper .npcf-cta-enhanced > strong,
.pd-wrapper .npcf-cta-enhanced > strong{
  display:block;
  margin:0 0 16px;
  color:var(--npcf-heading);
  font-size:17px;
  line-height:1.5;
}
.npcf-wrapper .npcf-cta-wrap .npcf-button,
.npcf-wrapper .npcf-cta-wrap .pd-cta,
.npcf-wrapper .npcf-cta-enhanced .npcf-button,
.npcf-wrapper .npcf-cta-enhanced .pd-cta,
.pd-wrapper .npcf-cta-wrap .npcf-button,
.pd-wrapper .npcf-cta-wrap .pd-cta,
.pd-wrapper .npcf-cta-enhanced .npcf-button,
.pd-wrapper .npcf-cta-enhanced .pd-cta{
  appearance:none !important;
  display:inline-flex !important;
  width:auto !important;
  max-width:100% !important;
  min-width:190px;
  min-height:48px;
  align-items:center;
  justify-content:center;
  margin:2px auto 0 !important;
  padding:12px 26px !important;
  white-space:nowrap !important;
  border:1px solid var(--npcf-accent) !important;
  border-radius:999px !important;
  background:var(--npcf-accent) !important;
  color:#fff !important;
  box-shadow:0 7px 18px rgba(122,46,46,.18) !important;
  font:inherit !important;
  font-size:15px !important;
  font-weight:800 !important;
  line-height:1.15 !important;
  text-decoration:none !important;
  text-shadow:none !important;
  cursor:pointer;
}
.npcf-wrapper .npcf-cta-wrap .npcf-button:hover,
.npcf-wrapper .npcf-cta-wrap .npcf-button:focus,
.npcf-wrapper .npcf-cta-wrap .pd-cta:hover,
.npcf-wrapper .npcf-cta-wrap .pd-cta:focus,
.npcf-wrapper .npcf-cta-enhanced .npcf-button:hover,
.npcf-wrapper .npcf-cta-enhanced .npcf-button:focus,
.npcf-wrapper .npcf-cta-enhanced .pd-cta:hover,
.npcf-wrapper .npcf-cta-enhanced .pd-cta:focus,
.pd-wrapper .npcf-cta-wrap .npcf-button:hover,
.pd-wrapper .npcf-cta-wrap .npcf-button:focus,
.pd-wrapper .npcf-cta-wrap .pd-cta:hover,
.pd-wrapper .npcf-cta-wrap .pd-cta:focus,
.pd-wrapper .npcf-cta-enhanced .npcf-button:hover,
.pd-wrapper .npcf-cta-enhanced .npcf-button:focus,
.pd-wrapper .npcf-cta-enhanced .pd-cta:hover,
.pd-wrapper .npcf-cta-enhanced .pd-cta:focus{
  background:var(--npcf-gold) !important;
  border-color:var(--npcf-gold) !important;
  color:#1f2937 !important;
  transform:translateY(-1px);
  box-shadow:0 9px 22px rgba(122,46,46,.14) !important;
}
.npcf-wrapper .npcf-cta-wrap .npcf-button:focus-visible,
.npcf-wrapper .npcf-cta-wrap .pd-cta:focus-visible,
.npcf-wrapper .npcf-cta-enhanced .npcf-button:focus-visible,
.npcf-wrapper .npcf-cta-enhanced .pd-cta:focus-visible,
.pd-wrapper .npcf-cta-wrap .npcf-button:focus-visible,
.pd-wrapper .npcf-cta-wrap .pd-cta:focus-visible,
.pd-wrapper .npcf-cta-enhanced .npcf-button:focus-visible,
.pd-wrapper .npcf-cta-enhanced .pd-cta:focus-visible{
  outline:3px solid rgba(122,46,46,.24) !important;
  outline-offset:3px !important;
}

/* Cleaner adaptive reading controls. */
.npcf-wrapper .npcf-reading-toolbar,
.pd-wrapper .npcf-reading-toolbar{margin:19px 0 11px;}
.npcf-wrapper .npcf-reading-toggle,
.pd-wrapper .npcf-reading-toggle{
  min-height:38px;
  padding:8px 15px;
  background:#fff;
  box-shadow:0 3px 10px rgba(15,23,42,.035);
}
.npcf-wrapper .npcf-adaptive-section,
.pd-wrapper .npcf-adaptive-section{
  margin:13px 0;
  border-radius:15px;
  box-shadow:0 5px 17px rgba(15,23,42,.045);
}
.npcf-wrapper .npcf-adaptive-summary,
.pd-wrapper .npcf-adaptive-summary{padding:16px 18px;}
.npcf-wrapper .npcf-adaptive-hint,
.pd-wrapper .npcf-adaptive-hint{width:27px;height:27px;font-size:17px;}
.npcf-wrapper .npcf-adaptive-body,
.pd-wrapper .npcf-adaptive-body{padding:4px 18px 18px;}

@media(max-width:900px){
  .npcf-wrapper .npcf-snapshot,
  .npcf-wrapper .npcf-snapshot-grid,
  .npcf-wrapper .npcf-spec-grid,
  .npcf-wrapper .pd-specs,
  .npcf-wrapper .npcf-trust-grid,
  .npcf-wrapper .pd-trust-grid,
  .pd-wrapper .npcf-snapshot,
  .pd-wrapper .npcf-snapshot-grid,
  .pd-wrapper .npcf-spec-grid,
  .pd-wrapper .pd-specs,
  .pd-wrapper .npcf-trust-grid,
  .pd-wrapper .pd-trust-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media(max-width:767px){
  .npcf-wrapper,
  .pd-wrapper{font-size:15px;line-height:1.67;}
  .npcf-wrapper h2,
  .pd-wrapper h2{margin-top:25px;font-size:20px;}
  .npcf-wrapper h3,
  .pd-wrapper h3{font-size:16px;}
  .npcf-wrapper .npcf-card,
  .npcf-wrapper .pd-note-card,
  .pd-wrapper .npcf-card,
  .pd-wrapper .pd-note-card{margin:12px 0;padding:16px;border-radius:14px;}
  .npcf-wrapper .npcf-design-card,
  .pd-wrapper .npcf-design-card{padding-left:19px;}
  .npcf-wrapper .npcf-design-card h3,
  .pd-wrapper .npcf-design-card h3{font-size:16px;}
  .npcf-wrapper .npcf-snapshot,
  .npcf-wrapper .npcf-snapshot-grid,
  .pd-wrapper .npcf-snapshot,
  .pd-wrapper .npcf-snapshot-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;}
  .npcf-wrapper .npcf-snapshot-item,
  .npcf-wrapper .npcf-snapshot-card,
  .pd-wrapper .npcf-snapshot-item,
  .pd-wrapper .npcf-snapshot-card{min-height:88px;padding:12px 8px;}
  .npcf-wrapper .npcf-spec-grid,
  .npcf-wrapper .pd-specs,
  .npcf-wrapper .npcf-trust-grid,
  .npcf-wrapper .pd-trust-grid,
  .pd-wrapper .npcf-spec-grid,
  .pd-wrapper .pd-specs,
  .pd-wrapper .npcf-trust-grid,
  .pd-wrapper .pd-trust-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;}
  .npcf-wrapper .npcf-spec-card,
  .npcf-wrapper .pd-spec,
  .pd-wrapper .npcf-spec-card,
  .pd-wrapper .pd-spec{min-height:88px;padding:12px 8px;font-size:13px;}
  .npcf-wrapper .npcf-trust,
  .npcf-wrapper .npcf-trust-card,
  .npcf-wrapper .pd-trust,
  .pd-wrapper .npcf-trust,
  .pd-wrapper .npcf-trust-card,
  .pd-wrapper .pd-trust{min-height:94px;padding:12px 8px;font-size:12px;}
  .npcf-wrapper .npcf-decision-block,
  .pd-wrapper .npcf-decision-block{margin:15px 0 22px;padding:16px;border-left-width:3px;}
  .npcf-wrapper .npcf-cta-wrap,
  .pd-wrapper .npcf-cta-wrap,
  .npcf-wrapper .npcf-cta-enhanced,
  .pd-wrapper .npcf-cta-enhanced{margin-top:24px !important;padding:20px 14px;border-radius:16px;}
  .npcf-wrapper .npcf-cta-wrap .npcf-button,
  .npcf-wrapper .npcf-cta-wrap .pd-cta,
  .npcf-wrapper .npcf-cta-enhanced .npcf-button,
  .npcf-wrapper .npcf-cta-enhanced .pd-cta,
  .pd-wrapper .npcf-cta-wrap .npcf-button,
  .pd-wrapper .npcf-cta-wrap .pd-cta,
  .pd-wrapper .npcf-cta-enhanced .npcf-button,
  .pd-wrapper .npcf-cta-enhanced .pd-cta{width:min(100%,320px) !important;min-width:0;padding:12px 18px !important;font-size:14px !important;}
  .npcf-wrapper .npcf-reading-toolbar,
  .pd-wrapper .npcf-reading-toolbar{justify-content:stretch;}
  .npcf-wrapper .npcf-reading-toggle,
  .pd-wrapper .npcf-reading-toggle{width:100%;}
  .npcf-wrapper .npcf-adaptive-summary,
  .pd-wrapper .npcf-adaptive-summary{padding:14px;}
  .npcf-wrapper .npcf-adaptive-body,
  .pd-wrapper .npcf-adaptive-body{padding:3px 14px 15px;}
}

@media(max-width:420px){
  .npcf-wrapper .npcf-snapshot,
  .npcf-wrapper .npcf-snapshot-grid,
  .npcf-wrapper .npcf-spec-grid,
  .npcf-wrapper .pd-specs,
  .npcf-wrapper .npcf-trust-grid,
  .npcf-wrapper .pd-trust-grid,
  .pd-wrapper .npcf-snapshot,
  .pd-wrapper .npcf-snapshot-grid,
  .pd-wrapper .npcf-spec-grid,
  .pd-wrapper .pd-specs,
  .pd-wrapper .npcf-trust-grid,
  .pd-wrapper .pd-trust-grid{grid-template-columns:1fr;}
}

@media(prefers-reduced-motion:reduce){
  .npcf-wrapper *,
  .pd-wrapper *{scroll-behavior:auto !important;}
  .npcf-wrapper .npcf-card,
  .npcf-wrapper .pd-note-card,
  .pd-wrapper .npcf-card,
  .pd-wrapper .pd-note-card,
  .npcf-wrapper .npcf-button,
  .npcf-wrapper .pd-cta,
  .pd-wrapper .npcf-button,
  .pd-wrapper .pd-cta,
  .npcf-wrapper .npcf-adaptive-hint,
  .pd-wrapper .npcf-adaptive-hint{transition:none !important;transform:none !important;}
}

/* ========================================================================
 * v3.7.1 — Lightweight Collector UI
 * Flat, mobile-friendly presentation inspired by the legacy Iranian product
 * cards: no decorative shadows, gradients, hover movement, or heavy effects.
 * ====================================================================== */
.npcf-wrapper,
.pd-wrapper{
  --npcf-border:#e5e7eb;
  --npcf-border-warm:#efc38e;
  --npcf-soft:#fffaf2;
  --npcf-card:#fffaf2;
  --npcf-radius:10px;
  --npcf-shadow:none;
  --npcf-shadow-hover:none;
}

/* Flat content cards. */
.npcf-wrapper .npcf-card,
.npcf-wrapper .pd-note-card,
.pd-wrapper .npcf-card,
.pd-wrapper .pd-note-card{
  margin:14px 0;
  padding:17px 18px;
  overflow:visible;
  background:#fffaf2;
  border:1px solid var(--npcf-border-warm);
  border-radius:10px;
  box-shadow:none !important;
  transform:none !important;
  transition:border-color .15s ease,background-color .15s ease;
}
.npcf-wrapper .npcf-card:hover,
.npcf-wrapper .pd-note-card:hover,
.pd-wrapper .npcf-card:hover,
.pd-wrapper .pd-note-card:hover{
  background:#fffaf2;
  border-color:#e7b979;
  box-shadow:none !important;
  transform:none !important;
}

/* Design cards match the simple reference design exactly: warm fill + thin border. */
.npcf-wrapper .npcf-design-card,
.pd-wrapper .npcf-design-card{
  padding-left:18px;
  background:#fffaf2;
  border-color:var(--npcf-border-warm);
}
.npcf-wrapper .npcf-design-card::before,
.pd-wrapper .npcf-design-card::before{display:none !important;}
.npcf-wrapper .npcf-design-card h3,
.pd-wrapper .npcf-design-card h3{
  margin-bottom:12px;
  font-size:17px;
}

/* Lightweight snapshot, specification, and trust cards. */
.npcf-wrapper .npcf-snapshot-item,
.npcf-wrapper .npcf-snapshot-card,
.pd-wrapper .npcf-snapshot-item,
.pd-wrapper .npcf-snapshot-card,
.npcf-wrapper .npcf-spec-card,
.npcf-wrapper .pd-spec,
.pd-wrapper .npcf-spec-card,
.pd-wrapper .pd-spec,
.npcf-wrapper .npcf-trust,
.npcf-wrapper .npcf-trust-card,
.npcf-wrapper .pd-trust,
.pd-wrapper .npcf-trust,
.pd-wrapper .npcf-trust-card,
.pd-wrapper .pd-trust{
  background:#fffaf2;
  border:1px solid var(--npcf-border-warm);
  border-radius:10px;
  box-shadow:none !important;
}

/* Flat decision panel. */
.npcf-wrapper .npcf-decision-block,
.pd-wrapper .npcf-decision-block{
  background:#fffaf2;
  border:1px solid var(--npcf-border-warm);
  border-left:3px solid var(--npcf-accent);
  border-radius:10px;
  box-shadow:none !important;
}

/* Simple CTA: no gradient and no shadow. */
.npcf-wrapper .npcf-cta-wrap,
.pd-wrapper .npcf-cta-wrap,
.npcf-wrapper .npcf-cta-enhanced,
.pd-wrapper .npcf-cta-enhanced{
  background:#fffaf2;
  border:1px solid var(--npcf-border-warm);
  border-radius:10px;
  box-shadow:none !important;
}
.npcf-wrapper .npcf-cta-wrap .npcf-button,
.npcf-wrapper .npcf-cta-wrap .pd-cta,
.npcf-wrapper .npcf-cta-enhanced .npcf-button,
.npcf-wrapper .npcf-cta-enhanced .pd-cta,
.pd-wrapper .npcf-cta-wrap .npcf-button,
.pd-wrapper .npcf-cta-wrap .pd-cta,
.pd-wrapper .npcf-cta-enhanced .npcf-button,
.pd-wrapper .npcf-cta-enhanced .pd-cta{
  box-shadow:none !important;
  transform:none !important;
}
.npcf-wrapper .npcf-cta-wrap .npcf-button:hover,
.npcf-wrapper .npcf-cta-wrap .npcf-button:focus,
.npcf-wrapper .npcf-cta-wrap .pd-cta:hover,
.npcf-wrapper .npcf-cta-wrap .pd-cta:focus,
.npcf-wrapper .npcf-cta-enhanced .npcf-button:hover,
.npcf-wrapper .npcf-cta-enhanced .npcf-button:focus,
.npcf-wrapper .npcf-cta-enhanced .pd-cta:hover,
.npcf-wrapper .npcf-cta-enhanced .pd-cta:focus,
.pd-wrapper .npcf-cta-wrap .npcf-button:hover,
.pd-wrapper .npcf-cta-wrap .npcf-button:focus,
.pd-wrapper .npcf-cta-wrap .pd-cta:hover,
.pd-wrapper .npcf-cta-wrap .pd-cta:focus,
.pd-wrapper .npcf-cta-enhanced .npcf-button:hover,
.pd-wrapper .npcf-cta-enhanced .npcf-button:focus,
.pd-wrapper .npcf-cta-enhanced .pd-cta:hover,
.pd-wrapper .npcf-cta-enhanced .pd-cta:focus{
  box-shadow:none !important;
  transform:none !important;
}

/* Flat adaptive reading controls. */
.npcf-wrapper .npcf-reading-toggle,
.pd-wrapper .npcf-reading-toggle,
.npcf-wrapper .npcf-adaptive-section,
.pd-wrapper .npcf-adaptive-section{
  box-shadow:none !important;
}

@media(max-width:767px){
  .npcf-wrapper .npcf-card,
  .npcf-wrapper .pd-note-card,
  .pd-wrapper .npcf-card,
  .pd-wrapper .pd-note-card{
    margin:11px 0;
    padding:14px;
    border-radius:9px;
  }
  .npcf-wrapper .npcf-design-card,
  .pd-wrapper .npcf-design-card{padding-left:14px;}
  .npcf-wrapper .npcf-snapshot-item,
  .npcf-wrapper .npcf-snapshot-card,
  .pd-wrapper .npcf-snapshot-item,
  .pd-wrapper .npcf-snapshot-card,
  .npcf-wrapper .npcf-spec-card,
  .npcf-wrapper .pd-spec,
  .pd-wrapper .npcf-spec-card,
  .pd-wrapper .pd-spec,
  .npcf-wrapper .npcf-trust,
  .npcf-wrapper .npcf-trust-card,
  .npcf-wrapper .pd-trust,
  .pd-wrapper .npcf-trust,
  .pd-wrapper .npcf-trust-card,
  .pd-wrapper .pd-trust{
    border-radius:9px;
  }
  .npcf-wrapper .npcf-cta-wrap,
  .pd-wrapper .npcf-cta-wrap,
  .npcf-wrapper .npcf-cta-enhanced,
  .pd-wrapper .npcf-cta-enhanced{
    padding:18px 13px;
    border-radius:9px;
  }
}

/* ========================================================================
 * v3.7.2 — Unified CTA + balanced six-item Snapshot grids
 * Keeps the lightweight v3.7.1 visual language and fixes legacy markup
 * differences without affecting the main WooCommerce purchase button.
 * ====================================================================== */

/* Every in-description CTA uses one consistent, complete frame. */
.npcf-wrapper .npcf-cta-unified,
.pd-wrapper .npcf-cta-unified{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  gap:14px !important;
  width:min(100%,760px) !important;
  min-height:134px;
  margin:30px auto 4px !important;
  padding:22px 20px !important;
  text-align:center !important;
  background:#fffaf2 !important;
  border:1px solid var(--npcf-border-warm,#efc38e) !important;
  border-radius:10px !important;
  box-shadow:none !important;
}
.npcf-wrapper .npcf-cta-unified > p,
.pd-wrapper .npcf-cta-unified > p,
.npcf-wrapper .npcf-cta-unified > strong,
.pd-wrapper .npcf-cta-unified > strong,
.npcf-wrapper .npcf-cta-unified > em,
.pd-wrapper .npcf-cta-unified > em{
  display:block !important;
  width:100%;
  max-width:680px;
  margin:0 !important;
  color:var(--npcf-heading,#0f172a) !important;
  font-size:16px !important;
  font-style:normal;
  font-weight:700;
  line-height:1.55 !important;
  text-align:center !important;
}

/* Hard reset theme button metrics so text remains vertically centered. */
.npcf-wrapper .npcf-cta-unified .npcf-cta-button,
.pd-wrapper .npcf-cta-unified .npcf-cta-button{
  appearance:none !important;
  -webkit-appearance:none !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex:0 0 auto !important;
  width:auto !important;
  min-width:152px !important;
  max-width:100% !important;
  height:48px !important;
  min-height:48px !important;
  margin:0 auto !important;
  padding:0 28px 2px !important;
  border:1px solid var(--npcf-accent,#7a2e2e) !important;
  border-radius:999px !important;
  background:var(--npcf-accent,#7a2e2e) !important;
  color:#fff !important;
  font-family:inherit !important;
  font-size:15px !important;
  font-style:normal !important;
  font-weight:800 !important;
  line-height:1 !important;
  letter-spacing:0 !important;
  text-align:center !important;
  text-indent:0 !important;
  text-transform:none !important;
  text-decoration:none !important;
  text-shadow:none !important;
  vertical-align:middle !important;
  box-shadow:none !important;
  transform:none !important;
}
.npcf-wrapper .npcf-cta-unified .npcf-cta-button::before,
.npcf-wrapper .npcf-cta-unified .npcf-cta-button::after,
.pd-wrapper .npcf-cta-unified .npcf-cta-button::before,
.pd-wrapper .npcf-cta-unified .npcf-cta-button::after{
  line-height:1 !important;
  vertical-align:middle !important;
}
.npcf-wrapper .npcf-cta-unified .npcf-cta-button:hover,
.npcf-wrapper .npcf-cta-unified .npcf-cta-button:focus,
.pd-wrapper .npcf-cta-unified .npcf-cta-button:hover,
.pd-wrapper .npcf-cta-unified .npcf-cta-button:focus{
  background:#f8bd76 !important;
  border-color:#f8bd76 !important;
  color:#1f2937 !important;
  box-shadow:none !important;
  transform:none !important;
}

/* Six Snapshot cards must form two balanced rows of three on desktop. */
.npcf-wrapper .npcf-snapshot.npcf-grid-items-6,
.npcf-wrapper .npcf-snapshot-grid.npcf-grid-items-6,
.pd-wrapper .npcf-snapshot.npcf-grid-items-6,
.pd-wrapper .npcf-snapshot-grid.npcf-grid-items-6{
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
}

@media(max-width:767px){
  .npcf-wrapper .npcf-cta-unified,
  .pd-wrapper .npcf-cta-unified{
    min-height:0;
    gap:12px !important;
    margin-top:24px !important;
    padding:18px 13px !important;
    border-radius:9px !important;
  }
  .npcf-wrapper .npcf-cta-unified > p,
  .pd-wrapper .npcf-cta-unified > p,
  .npcf-wrapper .npcf-cta-unified > strong,
  .pd-wrapper .npcf-cta-unified > strong,
  .npcf-wrapper .npcf-cta-unified > em,
  .pd-wrapper .npcf-cta-unified > em{
    font-size:15px !important;
    line-height:1.5 !important;
  }
  .npcf-wrapper .npcf-cta-unified .npcf-cta-button,
  .pd-wrapper .npcf-cta-unified .npcf-cta-button{
    width:min(100%,280px) !important;
    min-width:0 !important;
    height:46px !important;
    min-height:46px !important;
    padding:0 18px 2px !important;
    font-size:14px !important;
    white-space:nowrap !important;
  }
  .npcf-wrapper .npcf-snapshot.npcf-grid-items-6,
  .npcf-wrapper .npcf-snapshot-grid.npcf-grid-items-6,
  .pd-wrapper .npcf-snapshot.npcf-grid-items-6,
  .pd-wrapper .npcf-snapshot-grid.npcf-grid-items-6{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media(max-width:420px){
  .npcf-wrapper .npcf-snapshot.npcf-grid-items-6,
  .npcf-wrapper .npcf-snapshot-grid.npcf-grid-items-6,
  .pd-wrapper .npcf-snapshot.npcf-grid-items-6,
  .pd-wrapper .npcf-snapshot-grid.npcf-grid-items-6{
    grid-template-columns:1fr !important;
  }
}


/* v3.7.3 — optical vertical centering for CTA button labels.
 * A small bottom inset compensates for the font baseline used by some themes
 * while flexbox continues to provide true cross-browser centering. */
.npcf-wrapper .npcf-cta-unified .npcf-cta-button,
.pd-wrapper .npcf-cta-unified .npcf-cta-button{
  padding-top:0 !important;
  padding-bottom:2px !important;
}


/* v3.7.4 — Cross-browser CTA hardening.
 * Literal values and dedicated label alignment avoid stale custom-property
 * fallbacks and font baseline differences between Chrome and Edge. */
.npcf-wrapper .npcf-cta-unified,
.pd-wrapper .npcf-cta-unified,
.npcf-wrapper .npcf-cta-wrap,
.pd-wrapper .npcf-cta-wrap {
  display:block !important;
  width:min(100%,760px) !important;
  margin:30px auto 4px !important;
  padding:24px 22px !important;
  text-align:center !important;
  background-color:#fffaf2 !important;
  background-image:none !important;
  border:1px solid #f2bd7d !important;
  border-radius:10px !important;
  box-shadow:none !important;
  box-sizing:border-box !important;
}

.npcf-wrapper .npcf-cta-unified .npcf-cta-button,
.pd-wrapper .npcf-cta-unified .npcf-cta-button,
.npcf-wrapper .npcf-cta-wrap .npcf-button,
.npcf-wrapper .npcf-cta-wrap .pd-cta,
.pd-wrapper .npcf-cta-wrap .npcf-button,
.pd-wrapper .npcf-cta-wrap .pd-cta {
  position:relative !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  min-width:166px !important;
  min-height:48px !important;
  height:48px !important;
  margin:2px auto 0 !important;
  padding:0 28px !important;
  border:1px solid #8b3030 !important;
  border-radius:999px !important;
  background:#8b3030 !important;
  color:#fff !important;
  box-shadow:none !important;
  line-height:1 !important;
  vertical-align:middle !important;
  text-align:center !important;
  white-space:nowrap !important;
  overflow:visible !important;
  box-sizing:border-box !important;
  transform:none !important;
}

.npcf-wrapper .npcf-cta-button-label,
.pd-wrapper .npcf-cta-button-label {
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  height:100% !important;
  margin:0 !important;
  padding:0 !important;
  line-height:1 !important;
  font:inherit !important;
  font-size:15px !important;
  font-weight:800 !important;
  color:inherit !important;
  transform:translateY(-1px) !important;
  pointer-events:none !important;
}

@media(max-width:767px){
  .npcf-wrapper .npcf-cta-unified,
  .pd-wrapper .npcf-cta-unified,
  .npcf-wrapper .npcf-cta-wrap,
  .pd-wrapper .npcf-cta-wrap {
    width:100% !important;
    padding:20px 16px !important;
  }
}


/* v3.7.5 — deterministic CTA frame and label centering.
 * The absolute label layer removes font-baseline differences entirely. */
.npcf-cta-unified,
.npcf-cta-wrap{
  background-color:#fffaf2 !important;
  background-image:none !important;
  border:1px solid #f2bd7d !important;
  box-shadow:none !important;
}
.npcf-cta-button{
  position:relative !important;
  overflow:hidden !important;
  padding-top:0 !important;
  padding-bottom:0 !important;
  line-height:48px !important;
}
.npcf-cta-button > .npcf-cta-button-label{
  position:absolute !important;
  inset:0 !important;
  display:grid !important;
  place-items:center !important;
  width:100% !important;
  height:100% !important;
  margin:0 !important;
  padding:0 10px !important;
  line-height:1 !important;
  transform:translateY(-2px) !important;
  box-sizing:border-box !important;
}


/* v3.7.6 — real cache-busting release.
 * Previous packages still enqueued assets with the internal 3.7.2 version,
 * so Edge could keep serving stale CSS/JS. The PHP enqueue version and asset
 * handles are now 3.7.6. This rule is the final optical label adjustment. */
.npcf-cta-button > .npcf-cta-button-label{
  transform:translateY(-3px) !important;
}


/* v3.7.7 — public-cache-safe CTA rendering.
 * Use CSS Grid for deterministic centering and literal values for the frame. */
.npcf-wrapper .npcf-cta-wrap,
.pd-wrapper .npcf-cta-wrap,
.npcf-wrapper .npcf-cta-enhanced,
.pd-wrapper .npcf-cta-enhanced {
  display:block !important;
  width:100% !important;
  max-width:760px !important;
  margin:30px auto 4px !important;
  padding:24px 22px !important;
  background:#fffaf2 !important;
  border:1px solid #f2bd7d !important;
  border-radius:10px !important;
  box-shadow:none !important;
  text-align:center !important;
  box-sizing:border-box !important;
}
.npcf-wrapper .npcf-cta-wrap .npcf-button,
.npcf-wrapper .npcf-cta-wrap .pd-cta,
.pd-wrapper .npcf-cta-wrap .npcf-button,
.pd-wrapper .npcf-cta-wrap .pd-cta,
.npcf-wrapper .npcf-cta-enhanced .npcf-button,
.npcf-wrapper .npcf-cta-enhanced .pd-cta,
.pd-wrapper .npcf-cta-enhanced .npcf-button,
.pd-wrapper .npcf-cta-enhanced .pd-cta {
  position:relative !important;
  display:inline-grid !important;
  place-items:center !important;
  width:auto !important;
  min-width:166px !important;
  height:48px !important;
  min-height:48px !important;
  margin:2px auto 0 !important;
  padding:0 28px !important;
  border:1px solid #8b3030 !important;
  border-radius:999px !important;
  background:#8b3030 !important;
  color:#fff !important;
  line-height:normal !important;
  text-align:center !important;
  vertical-align:middle !important;
  white-space:nowrap !important;
  box-shadow:none !important;
  transform:none !important;
  box-sizing:border-box !important;
}
.npcf-wrapper .npcf-cta-button-label,
.pd-wrapper .npcf-cta-button-label {
  position:static !important;
  inset:auto !important;
  display:block !important;
  width:auto !important;
  height:auto !important;
  margin:0 !important;
  padding:0 !important;
  line-height:1 !important;
  transform:translateY(-1px) !important;
}

/* ========================================================================
 * v3.8.0 — Smart Collector Decision Box
 * Scoped to NPCF/legacy product wrappers to avoid collisions with the
 * existing v3.x decision block and third-party theme styles.
 * ====================================================================== */
.npcf-wrapper .npcf-decision-box,
.pd-wrapper .npcf-decision-box {
  width:100%;
  margin:22px 0;
  padding:18px 20px;
  background:#fffaf2;
  border:1px solid #efc38e;
  border-radius:10px;
  box-shadow:none;
  box-sizing:border-box;
}

.npcf-wrapper .npcf-decision-box .npcf-decision-title,
.pd-wrapper .npcf-decision-box .npcf-decision-title {
  display:block;
  margin:0 0 12px;
  padding:0;
  color:#0b3d2e;
  font-size:18px;
  font-weight:800;
  line-height:1.35;
  letter-spacing:0;
  text-transform:none;
}

.npcf-wrapper .npcf-decision-box .npcf-decision-list,
.pd-wrapper .npcf-decision-box .npcf-decision-list {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 18px;
  width:100%;
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}

.npcf-wrapper .npcf-decision-box .npcf-decision-list li,
.pd-wrapper .npcf-decision-box .npcf-decision-list li {
  display:flex;
  align-items:flex-start;
  gap:8px;
  min-width:0;
  margin:0 !important;
  padding:0 !important;
  color:#334155;
  font-size:15px;
  font-weight:600;
  line-height:1.45;
  list-style:none !important;
}

.npcf-wrapper .npcf-decision-box .npcf-decision-list li::before,
.pd-wrapper .npcf-decision-box .npcf-decision-list li::before {
  content:none !important;
  display:none !important;
}

.npcf-wrapper .npcf-decision-box .npcf-check,
.pd-wrapper .npcf-decision-box .npcf-check {
  flex:0 0 auto;
  display:inline-block;
  margin:0;
  padding:0;
  color:#0b3d2e;
  font-size:15px;
  font-weight:800;
  line-height:1.45;
}

@media (max-width:767px) {
  .npcf-wrapper .npcf-decision-box,
  .pd-wrapper .npcf-decision-box {
    margin:18px 0;
    padding:15px;
    border-radius:9px;
  }

  .npcf-wrapper .npcf-decision-box .npcf-decision-title,
  .pd-wrapper .npcf-decision-box .npcf-decision-title {
    margin-bottom:10px;
    font-size:17px;
  }

  .npcf-wrapper .npcf-decision-box .npcf-decision-list,
  .pd-wrapper .npcf-decision-box .npcf-decision-list {
    grid-template-columns:1fr;
    gap:8px;
  }
}

@media (prefers-reduced-motion:reduce) {
  .npcf-wrapper .npcf-decision-box *,
  .pd-wrapper .npcf-decision-box * {
    transition:none !important;
    animation:none !important;
  }
}


/* v3.8.0 — Product badge and dynamic CTA fallback */
.npcf-wrapper .npcf-product-type-badge,
.pd-wrapper .npcf-product-type-badge {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:auto;
  max-width:100%;
  margin:0 0 8px;
  padding:5px 10px;
  border:1px solid #efc38e;
  border-radius:999px;
  background:#ffffff;
  color:#7a2e2e;
  font-size:12px;
  font-weight:800;
  line-height:1.2;
  letter-spacing:.02em;
  text-transform:none;
}

.npcf-wrapper .npcf-decision-box .npcf-decision-kicker,
.pd-wrapper .npcf-decision-box .npcf-decision-kicker {
  display:block;
  margin:0 0 4px;
  color:#64748b;
  font-size:11px;
  font-weight:800;
  line-height:1.3;
  letter-spacing:.07em;
  text-transform:uppercase;
}

.npcf-wrapper .npcf-dynamic-cta-copy,
.pd-wrapper .npcf-dynamic-cta-copy {
  display:block;
  width:100%;
  max-width:680px;
  margin:0 0 14px !important;
  color:#0f172a;
  font-size:16px;
  font-weight:700;
  line-height:1.55;
  text-align:center;
}

@media (max-width:767px) {
  .npcf-wrapper .npcf-product-type-badge,
  .pd-wrapper .npcf-product-type-badge {
    margin-bottom:7px;
    padding:4px 9px;
    font-size:11px;
  }

  .npcf-wrapper .npcf-dynamic-cta-copy,
  .pd-wrapper .npcf-dynamic-cta-copy {
    font-size:15px;
    line-height:1.5;
  }
}


/* ========================================================================
 * v3.8.4 — Trust Optimization
 * Lightweight, factual purchase reassurance positioned immediately before
 * the in-description CTA. No fake scarcity, countdowns, or heavy effects.
 * ====================================================================== */
.npcf-wrapper .npcf-trust-optimization,
.pd-wrapper .npcf-trust-optimization {
  width:min(100%,760px);
  margin:22px auto 10px;
  padding:0;
  background:transparent;
  border:0;
  box-shadow:none;
}

.npcf-wrapper .npcf-trust-status-row,
.pd-wrapper .npcf-trust-status-row {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  margin:0 0 10px;
}

.npcf-wrapper .npcf-trust-status-badge,
.pd-wrapper .npcf-trust-status-badge {
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 11px;
  border:1px solid #efc38e;
  border-radius:999px;
  background:#fffaf2;
  color:#7a2e2e;
  font-size:12px;
  font-weight:800;
  line-height:1.2;
}

.npcf-wrapper .npcf-trust-optimization-grid,
.pd-wrapper .npcf-trust-optimization-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.npcf-wrapper .npcf-trust-optimization-item,
.pd-wrapper .npcf-trust-optimization-item {
  display:flex;
  align-items:flex-start;
  gap:9px;
  min-width:0;
  padding:12px 13px;
  background:#fffaf2;
  border:1px solid #efc38e;
  border-radius:9px;
  box-shadow:none;
  color:#334155;
  text-align:left;
}

.npcf-wrapper .npcf-trust-icon,
.pd-wrapper .npcf-trust-icon {
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  margin-top:1px;
  border-radius:50%;
  background:#0b3d2e;
  color:#fff;
  font-size:12px;
  font-weight:900;
  line-height:1;
}

.npcf-wrapper .npcf-trust-optimization-item strong,
.pd-wrapper .npcf-trust-optimization-item strong {
  display:block;
  margin:0 0 2px;
  color:#0f172a;
  font-size:13px;
  font-weight:800;
  line-height:1.35;
}

.npcf-wrapper .npcf-trust-optimization-item span:not(.npcf-trust-icon),
.pd-wrapper .npcf-trust-optimization-item span:not(.npcf-trust-icon) {
  display:block;
  color:#64748b;
  font-size:12px;
  font-weight:600;
  line-height:1.4;
}

.npcf-wrapper .npcf-trust-positioned + .npcf-cta-wrap,
.npcf-wrapper .npcf-trust-positioned + .npcf-cta-enhanced,
.pd-wrapper .npcf-trust-positioned + .npcf-cta-wrap,
.pd-wrapper .npcf-trust-positioned + .npcf-cta-enhanced {
  margin-top:10px !important;
}

@media (max-width:767px) {
  .npcf-wrapper .npcf-trust-optimization,
  .pd-wrapper .npcf-trust-optimization {
    margin:18px auto 8px;
  }

  .npcf-wrapper .npcf-trust-optimization-grid,
  .pd-wrapper .npcf-trust-optimization-grid {
    grid-template-columns:1fr;
    gap:8px;
  }

  .npcf-wrapper .npcf-trust-optimization-item,
  .pd-wrapper .npcf-trust-optimization-item {
    padding:11px 12px;
  }
}

@media (prefers-reduced-motion:reduce) {
  .npcf-wrapper .npcf-trust-optimization *,
  .pd-wrapper .npcf-trust-optimization * {
    transition:none !important;
    animation:none !important;
  }
}


/* ========================================================================
 * v3.8.4 — Legacy Content Compatibility
 * Applies only to descriptions without an authored npcf-wrapper/pd-wrapper.
 * The wrapper is added at render time by PHP; stored product content is untouched.
 * ====================================================================== */
.npcf-wrapper.npcf-legacy-content{
  display:block;
  width:100%;
}
.npcf-wrapper.npcf-legacy-content .npcf-legacy-runtime-content{
  display:block;
  margin:0;
}
.npcf-wrapper.npcf-legacy-content .npcf-legacy-runtime-content > :first-child{margin-top:0;}
.npcf-wrapper.npcf-legacy-content .npcf-legacy-runtime-content > :last-child{margin-bottom:0;}
.npcf-wrapper.npcf-legacy-content .npcf-legacy-runtime-content h2,
.npcf-wrapper.npcf-legacy-content .npcf-legacy-runtime-content h3{
  color:var(--npcf-heading,#0f172a);
}
.npcf-wrapper.npcf-legacy-content .npcf-universal-confidence-footer,
.npcf-wrapper.npcf-legacy-content .npcf-universal-conversion-footer{
  display:block;
  width:100%;
}
.npcf-wrapper.npcf-legacy-content .npcf-trust-optimization{
  width:min(100%,760px);
  margin:26px auto 12px;
}
.npcf-wrapper.npcf-legacy-content .npcf-trust-optimization-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.npcf-wrapper.npcf-legacy-content .npcf-trust-optimization-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  min-width:0;
  padding:13px 14px;
  background:#fffaf2;
  border:1px solid #efc38e;
  border-radius:10px;
}
.npcf-wrapper.npcf-legacy-content .npcf-trust-optimization-item > div{
  display:flex;
  min-width:0;
  flex-direction:column;
  gap:2px;
}
.npcf-wrapper.npcf-legacy-content .npcf-trust-optimization-item strong,
.npcf-wrapper.npcf-legacy-content .npcf-trust-optimization-item span{
  display:block;
}
.npcf-wrapper.npcf-legacy-content .npcf-trust-optimization-item strong{
  color:var(--npcf-heading,#0f172a);
  font-size:14px;
  line-height:1.35;
}
.npcf-wrapper.npcf-legacy-content .npcf-trust-optimization-item > div > span{
  color:var(--npcf-muted,#64748b);
  font-size:13px;
  line-height:1.4;
}
.npcf-wrapper.npcf-legacy-content .npcf-trust-icon{
  display:inline-flex;
  flex:0 0 22px;
  width:22px;
  height:22px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#0b5a45;
  color:#fff;
  font-size:13px;
  font-weight:800;
  line-height:1;
}
.npcf-wrapper.npcf-legacy-content .npcf-legacy-cta{
  width:min(100%,760px)!important;
  margin:12px auto 4px!important;
}
.npcf-wrapper.npcf-legacy-content .npcf-pathway-block{
  margin-top:30px;
}
@media(max-width:767px){
  .npcf-wrapper.npcf-legacy-content .npcf-trust-optimization-grid{
    grid-template-columns:1fr;
  }
  .npcf-wrapper.npcf-legacy-content .npcf-trust-optimization{
    margin-top:20px;
  }
}


/* ========================================================================
 * v3.8.4 — Legacy Footer Isolation + Purchase Control Stability
 * ====================================================================== */
.npcf-wrapper.npcf-legacy-content .npcf-legacy-conversion-footer{
  display:block;
  width:100%;
  clear:both;
  margin:24px 0 0;
  padding:0;
  box-sizing:border-box;
}
.npcf-wrapper.npcf-legacy-content .npcf-legacy-conversion-footer > :first-child{margin-top:0;}
.npcf-wrapper.npcf-legacy-content .npcf-legacy-conversion-footer > :last-child{margin-bottom:0;}
.npcf-wrapper.npcf-legacy-content .npcf-universal-confidence-footer,
.npcf-wrapper.npcf-legacy-content .npcf-universal-conversion-footer{
  display:block;
  width:100%;
  clear:both;
}
.npcf-wrapper.npcf-legacy-content .npcf-legacy-cta{
  position:relative;
  z-index:1;
  clear:both;
}
.npcf-wrapper.npcf-legacy-content .npcf-pathway-block{
  clear:both;
  width:100%;
}
/* Fallback styling remains valid even if a browser repairs old malformed HTML
 * and moves the trust block one level outside its expected legacy child. */
.npcf-legacy-conversion-footer .npcf-trust-optimization,
.npcf-legacy-content + .npcf-legacy-conversion-footer .npcf-trust-optimization{
  display:block;
  width:min(100%,836px);
  margin:0 auto 12px;
  box-sizing:border-box;
}
@media(max-width:767px){
  .npcf-wrapper.npcf-legacy-content .npcf-legacy-conversion-footer{margin-top:18px;}
}

/* ========================================================================
 * v3.8.4 — Legacy Trust Panel Normalization
 * Robust fallback for browsers repairing malformed legacy HTML. These rules
 * target only NPCF trust/legacy CTA components and do not alter authored
 * npcf-wrapper or pd-wrapper product content.
 * ====================================================================== */
[data-npcf-trust-panel="1"].npcf-trust-optimization {
  display:block !important;
  width:min(100%,836px) !important;
  margin:24px auto 12px !important;
  padding:0 !important;
  clear:both !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  box-sizing:border-box !important;
  font-family:inherit !important;
}
[data-npcf-trust-panel="1"] .npcf-trust-status-row {
  display:flex !important;
  flex-wrap:wrap !important;
  justify-content:center !important;
  gap:8px !important;
  margin:0 0 10px !important;
  padding:0 !important;
}
[data-npcf-trust-panel="1"] .npcf-trust-status-badge {
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:30px !important;
  margin:0 !important;
  padding:5px 12px !important;
  color:#7a2e2e !important;
  background:#fffaf2 !important;
  border:1px solid #efc38e !important;
  border-radius:999px !important;
  font-size:12px !important;
  font-weight:800 !important;
  line-height:1.2 !important;
}
[data-npcf-trust-panel="1"] .npcf-trust-optimization-grid {
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:10px !important;
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
}
[data-npcf-trust-panel="1"] .npcf-trust-optimization-item {
  display:flex !important;
  min-width:0 !important;
  min-height:68px !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  gap:10px !important;
  margin:0 !important;
  padding:13px 14px !important;
  color:#334155 !important;
  background:#fffaf2 !important;
  border:1px solid #efc38e !important;
  border-radius:10px !important;
  box-shadow:none !important;
  box-sizing:border-box !important;
  text-align:left !important;
}
[data-npcf-trust-panel="1"] .npcf-trust-optimization-item > div {
  display:flex !important;
  min-width:0 !important;
  flex:1 1 auto !important;
  flex-direction:column !important;
  gap:3px !important;
  margin:0 !important;
  padding:0 !important;
}
[data-npcf-trust-panel="1"] .npcf-trust-optimization-item strong {
  display:block !important;
  margin:0 !important;
  padding:0 !important;
  color:#0f172a !important;
  font-size:14px !important;
  font-weight:800 !important;
  line-height:1.35 !important;
}
[data-npcf-trust-panel="1"] .npcf-trust-optimization-item > div > span:not(.npcf-trust-icon) {
  display:block !important;
  margin:0 !important;
  padding:0 !important;
  color:#64748b !important;
  font-size:13px !important;
  font-weight:500 !important;
  line-height:1.4 !important;
}
[data-npcf-trust-panel="1"] .npcf-trust-icon {
  display:inline-grid !important;
  place-items:center !important;
  flex:0 0 24px !important;
  width:24px !important;
  height:24px !important;
  min-width:24px !important;
  margin:0 !important;
  padding:0 !important;
  color:#fff !important;
  background:#0b5a45 !important;
  border:0 !important;
  border-radius:50% !important;
  font-family:Arial,sans-serif !important;
  font-size:14px !important;
  font-style:normal !important;
  font-weight:700 !important;
  line-height:1 !important;
  text-align:center !important;
  box-sizing:border-box !important;
}
/* If malformed legacy markup separates the panel from its runtime wrapper. */
.woocommerce-Tabs-panel--description > [data-npcf-trust-panel="1"],
#tab-description > [data-npcf-trust-panel="1"],
.woocommerce-Tabs-panel--description .npcf-legacy-conversion-footer [data-npcf-trust-panel="1"] {
  width:min(100%,836px) !important;
}
@media(max-width:767px){
  [data-npcf-trust-panel="1"].npcf-trust-optimization {
    width:100% !important;
    margin:20px auto 10px !important;
  }
  [data-npcf-trust-panel="1"] .npcf-trust-optimization-grid {
    grid-template-columns:1fr !important;
    gap:9px !important;
  }
  [data-npcf-trust-panel="1"] .npcf-trust-optimization-item {
    min-height:0 !important;
    padding:12px !important;
  }
}

/* ========================================================================
 * v3.9.0 — Product Relationship Engine
 * Clarifies whether a recommendation is the same issue in another quantity,
 * another edition, an individual component, or a set containing the note.
 * ====================================================================== */
.npcf-wrapper .npcf-relationship-pathway .npcf-pathway-card,
.pd-wrapper .npcf-relationship-pathway .npcf-pathway-card{
  position:relative;
}

.npcf-wrapper .npcf-pathway-relation,
.pd-wrapper .npcf-pathway-relation{
  display:block;
  width:max-content;
  max-width:calc(100% - 20px);
  margin:10px 10px 0;
  padding:4px 8px;
  border:1px solid #efc38e;
  border-radius:999px;
  background:#fffaf2;
  color:#7a2e2e;
  font-size:11px;
  font-weight:800;
  line-height:1.3;
  white-space:normal;
}

.npcf-wrapper .npcf-pathway-card[data-npcf-relationship="same-issue-format"] .npcf-pathway-relation,
.npcf-wrapper .npcf-pathway-card[data-npcf-relationship="same-issue-quantity"] .npcf-pathway-relation,
.pd-wrapper .npcf-pathway-card[data-npcf-relationship="same-issue-format"] .npcf-pathway-relation,
.pd-wrapper .npcf-pathway-card[data-npcf-relationship="same-issue-quantity"] .npcf-pathway-relation{
  border-color:#b7d6ca;
  background:#f4fbf8;
  color:#0b3d2e;
}

.npcf-wrapper .npcf-pathway-card[data-npcf-relationship="included-in-set"] .npcf-pathway-relation,
.npcf-wrapper .npcf-pathway-card[data-npcf-relationship="component-note"] .npcf-pathway-relation,
.pd-wrapper .npcf-pathway-card[data-npcf-relationship="included-in-set"] .npcf-pathway-relation,
.pd-wrapper .npcf-pathway-card[data-npcf-relationship="component-note"] .npcf-pathway-relation{
  border-color:#d9c78c;
  background:#fffdf4;
  color:#6b5412;
}

.npcf-wrapper .npcf-relationship-pathway .npcf-pathway-heading p,
.pd-wrapper .npcf-relationship-pathway .npcf-pathway-heading p{
  max-width:760px;
}

@media(max-width:600px){
  .npcf-wrapper .npcf-pathway-relation,
  .pd-wrapper .npcf-pathway-relation{
    margin:8px 8px 0;
    max-width:calc(100% - 16px);
    font-size:10px;
  }
}
\n
/* v3.9.1 — Adaptive Reading Control Color Lock
 * Prevent theme/button rules from making Expand all unreadable.
 */
.npcf-wrapper .npcf-reading-toolbar .npcf-reading-toggle,
.pd-wrapper .npcf-reading-toolbar .npcf-reading-toggle,
.woocommerce div.product .npcf-wrapper .npcf-reading-toggle,
.woocommerce div.product .pd-wrapper .npcf-reading-toggle {
  -webkit-appearance:none !important;
  appearance:none !important;
  background:#fffaf2 !important;
  background-image:none !important;
  color:#7a2e2e !important;
  border:1px solid #d9a56a !important;
  box-shadow:none !important;
  text-shadow:none !important;
  opacity:1 !important;
  min-height:40px;
  padding:8px 16px !important;
  line-height:1.2 !important;
  font-weight:800 !important;
}

.npcf-wrapper .npcf-reading-toolbar .npcf-reading-toggle:hover,
.npcf-wrapper .npcf-reading-toolbar .npcf-reading-toggle:focus,
.pd-wrapper .npcf-reading-toolbar .npcf-reading-toggle:hover,
.pd-wrapper .npcf-reading-toolbar .npcf-reading-toggle:focus,
.woocommerce div.product .npcf-wrapper .npcf-reading-toggle:hover,
.woocommerce div.product .npcf-wrapper .npcf-reading-toggle:focus,
.woocommerce div.product .pd-wrapper .npcf-reading-toggle:hover,
.woocommerce div.product .pd-wrapper .npcf-reading-toggle:focus {
  background:#7a2e2e !important;
  background-image:none !important;
  color:#ffffff !important;
  border-color:#7a2e2e !important;
  box-shadow:none !important;
  text-shadow:none !important;
  transform:none !important;
}

.npcf-wrapper .npcf-reading-toolbar .npcf-reading-toggle:focus-visible,
.pd-wrapper .npcf-reading-toolbar .npcf-reading-toggle:focus-visible {
  outline:3px solid rgba(122,46,46,.22) !important;
  outline-offset:3px !important;
}


/* v3.9.2 — Keep conversion footer blocks outside Adaptive Reading panels. */
.npcf-wrapper > .npcf-cta-wrap,
.npcf-wrapper > .npcf-conversion-engine,
.npcf-wrapper > .npcf-universal-confidence-footer,
.npcf-wrapper > .npcf-universal-conversion-footer,
.pd-wrapper > .npcf-cta-wrap,
.pd-wrapper > .npcf-conversion-engine,
.pd-wrapper > .npcf-universal-confidence-footer,
.pd-wrapper > .npcf-universal-conversion-footer {
    position: relative;
    z-index: 1;
}

/* v4.0.0 — Conversion Intelligence Phase 1 */
.npcf-wrapper .npcf-smart-badge,
.pd-wrapper .npcf-smart-badge {
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:5px 10px;
    border:1px solid #e8d3aa;
    border-radius:999px;
    background:#fffaf2;
    color:#713737;
    font-size:12px;
    font-weight:800;
    line-height:1.2;
    box-shadow:none;
}
.npcf-wrapper .npcf-smart-badge--special-price,
.pd-wrapper .npcf-smart-badge--special-price { background:#fff4e6; border-color:#efb76d; }
.npcf-wrapper .npcf-smart-badge--collector-favorite,
.pd-wrapper .npcf-smart-badge--collector-favorite { background:#f4f8f5; border-color:#b8d0c5; color:#0b3d2e; }
.npcf-wrapper .npcf-pathway-card[data-npcf-relationship="same-issue-format"],
.npcf-wrapper .npcf-pathway-card[data-npcf-relationship="same-issue-quantity"],
.npcf-wrapper .npcf-pathway-card[data-npcf-relationship="included-in-set"],
.npcf-wrapper .npcf-pathway-card[data-npcf-relationship="component-note"] {
    border-color:#d8b56b;
}
.npcf-wrapper .npcf-pathway-relation,
.pd-wrapper .npcf-pathway-relation {
    min-height:30px;
}
@media (max-width:767px) {
    .npcf-wrapper .npcf-trust-status-row,
    .pd-wrapper .npcf-trust-status-row { gap:6px; }
    .npcf-wrapper .npcf-smart-badge,
    .pd-wrapper .npcf-smart-badge { font-size:11px; min-height:26px; padding:4px 9px; }
}

/* =========================================================
   v4.0.1 — Collector Journey Layout Stability
   Compact, theme-isolated controls with no inherited link effects.
   ========================================================= */
.npcf-wrapper .npcf-journey-engine,
.pd-wrapper .npcf-journey-engine,
.npcf-legacy-content .npcf-journey-engine {
    display:block;
    width:100%;
    margin:18px 0 22px;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    box-sizing:border-box;
    clear:both;
}

.npcf-wrapper .npcf-journey-section,
.pd-wrapper .npcf-journey-section,
.npcf-legacy-content .npcf-journey-section {
    display:block;
    margin:0;
    padding:16px 0;
    border:0;
    border-top:1px solid #e8edf2;
    background:transparent;
    box-shadow:none;
    box-sizing:border-box;
}

.npcf-wrapper .npcf-journey-section:first-child,
.pd-wrapper .npcf-journey-section:first-child,
.npcf-legacy-content .npcf-journey-section:first-child {
    padding-top:0;
    border-top:0;
}

.npcf-wrapper .npcf-journey-section h4,
.pd-wrapper .npcf-journey-section h4,
.npcf-legacy-content .npcf-journey-section h4 {
    margin:0 0 10px !important;
    padding:0 !important;
    color:#7a2e2e !important;
    font-size:13px !important;
    font-weight:800 !important;
    line-height:1.35 !important;
    letter-spacing:.045em;
    text-transform:uppercase;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
}

.npcf-wrapper .npcf-journey-steps,
.npcf-wrapper .npcf-progress-track,
.pd-wrapper .npcf-journey-steps,
.pd-wrapper .npcf-progress-track,
.npcf-legacy-content .npcf-journey-steps,
.npcf-legacy-content .npcf-progress-track {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
    width:100%;
    margin:0;
    padding:0;
}

/* Full theme reset for Journey anchors. */
.npcf-wrapper a.npcf-journey-step,
.npcf-wrapper a.npcf-progress-item,
.npcf-wrapper a.npcf-edition-link,
.pd-wrapper a.npcf-journey-step,
.pd-wrapper a.npcf-progress-item,
.pd-wrapper a.npcf-edition-link,
.npcf-legacy-content a.npcf-journey-step,
.npcf-legacy-content a.npcf-progress-item,
.npcf-legacy-content a.npcf-edition-link {
    -webkit-appearance:none !important;
    appearance:none !important;
    position:relative;
    isolation:isolate;
    overflow:hidden;
    text-decoration:none !important;
    text-decoration-line:none !important;
    text-shadow:none !important;
    background:#fffaf2 !important;
    background-image:none !important;
    box-shadow:none !important;
    outline:none;
}

.npcf-wrapper a.npcf-journey-step::before,
.npcf-wrapper a.npcf-journey-step::after,
.npcf-wrapper a.npcf-progress-item::before,
.npcf-wrapper a.npcf-progress-item::after,
.npcf-wrapper a.npcf-edition-link::before,
.npcf-wrapper a.npcf-edition-link::after,
.pd-wrapper a.npcf-journey-step::before,
.pd-wrapper a.npcf-journey-step::after,
.pd-wrapper a.npcf-progress-item::before,
.pd-wrapper a.npcf-progress-item::after,
.pd-wrapper a.npcf-edition-link::before,
.pd-wrapper a.npcf-edition-link::after,
.npcf-legacy-content a.npcf-journey-step::before,
.npcf-legacy-content a.npcf-journey-step::after,
.npcf-legacy-content a.npcf-progress-item::before,
.npcf-legacy-content a.npcf-progress-item::after,
.npcf-legacy-content a.npcf-edition-link::before,
.npcf-legacy-content a.npcf-edition-link::after {
    content:none !important;
    display:none !important;
}

.npcf-wrapper .npcf-journey-step,
.npcf-wrapper .npcf-progress-item,
.pd-wrapper .npcf-journey-step,
.pd-wrapper .npcf-progress-item,
.npcf-legacy-content .npcf-journey-step,
.npcf-legacy-content .npcf-progress-item {
    min-width:0;
    min-height:68px;
    display:flex !important;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    margin:0 !important;
    padding:10px 12px !important;
    border:1px solid #e4d8c8 !important;
    border-radius:10px !important;
    color:#172033 !important;
    text-align:center;
    line-height:1.25 !important;
    box-sizing:border-box;
}

.npcf-wrapper .npcf-journey-step > *,
.npcf-wrapper .npcf-progress-item > *,
.pd-wrapper .npcf-journey-step > *,
.pd-wrapper .npcf-progress-item > *,
.npcf-legacy-content .npcf-journey-step > *,
.npcf-legacy-content .npcf-progress-item > * {
    margin:0 !important;
    padding:0 !important;
    background:transparent !important;
    background-image:none !important;
    border:0 !important;
    box-shadow:none !important;
    text-decoration:none !important;
}

.npcf-wrapper .npcf-journey-step:hover,
.npcf-wrapper .npcf-journey-step:focus-visible,
.npcf-wrapper .npcf-progress-item:hover,
.npcf-wrapper .npcf-progress-item:focus-visible,
.pd-wrapper .npcf-journey-step:hover,
.pd-wrapper .npcf-journey-step:focus-visible,
.pd-wrapper .npcf-progress-item:hover,
.pd-wrapper .npcf-progress-item:focus-visible,
.npcf-legacy-content .npcf-journey-step:hover,
.npcf-legacy-content .npcf-journey-step:focus-visible,
.npcf-legacy-content .npcf-progress-item:hover,
.npcf-legacy-content .npcf-progress-item:focus-visible {
    border-color:#c98945 !important;
    background:#fff4e7 !important;
    background-image:none !important;
    color:#7a2e2e !important;
    transform:none !important;
    box-shadow:none !important;
}

.npcf-wrapper .npcf-journey-step.is-current,
.npcf-wrapper .npcf-progress-item.is-current,
.pd-wrapper .npcf-journey-step.is-current,
.pd-wrapper .npcf-progress-item.is-current,
.npcf-legacy-content .npcf-journey-step.is-current,
.npcf-legacy-content .npcf-progress-item.is-current {
    border-color:#0b5b4b !important;
    background:#f0f8f5 !important;
    color:#0b3d2e !important;
}

.npcf-wrapper .npcf-journey-dot,
.npcf-wrapper .npcf-progress-marker,
.pd-wrapper .npcf-journey-dot,
.pd-wrapper .npcf-progress-marker,
.npcf-legacy-content .npcf-journey-dot,
.npcf-legacy-content .npcf-progress-marker {
    width:24px;
    height:24px;
    flex:0 0 24px;
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    border-radius:999px !important;
    background:#0b5b4b !important;
    color:#fff !important;
    font-size:13px !important;
    font-weight:800 !important;
    line-height:1 !important;
}

.npcf-wrapper .npcf-journey-step span:not(.npcf-journey-dot),
.npcf-wrapper .npcf-progress-item strong,
.pd-wrapper .npcf-journey-step span:not(.npcf-journey-dot),
.pd-wrapper .npcf-progress-item strong,
.npcf-legacy-content .npcf-journey-step span:not(.npcf-journey-dot),
.npcf-legacy-content .npcf-progress-item strong {
    display:block;
    color:inherit !important;
    font-size:15px !important;
    font-weight:800 !important;
    line-height:1.25 !important;
}

.npcf-wrapper .npcf-journey-step small,
.npcf-wrapper .npcf-progress-item small,
.pd-wrapper .npcf-journey-step small,
.pd-wrapper .npcf-progress-item small,
.npcf-legacy-content .npcf-journey-step small,
.npcf-legacy-content .npcf-progress-item small {
    display:block;
    color:#64748b !important;
    font-size:11px !important;
    font-weight:700 !important;
    line-height:1.2 !important;
}

.npcf-wrapper .npcf-edition-grid,
.pd-wrapper .npcf-edition-grid,
.npcf-legacy-content .npcf-edition-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
}

.npcf-wrapper .npcf-edition-link,
.npcf-wrapper .npcf-edition-current,
.pd-wrapper .npcf-edition-link,
.pd-wrapper .npcf-edition-current,
.npcf-legacy-content .npcf-edition-link,
.npcf-legacy-content .npcf-edition-current {
    min-width:0;
    min-height:68px;
    display:flex !important;
    flex-direction:column;
    justify-content:center;
    margin:0 !important;
    padding:10px 12px !important;
    border:1px solid #e4d8c8 !important;
    border-radius:10px !important;
    background:#fffaf2 !important;
    background-image:none !important;
    color:#172033 !important;
    text-align:center;
    text-decoration:none !important;
    box-shadow:none !important;
    box-sizing:border-box;
}

.npcf-wrapper .npcf-edition-current,
.pd-wrapper .npcf-edition-current,
.npcf-legacy-content .npcf-edition-current {
    border-color:#0b5b4b !important;
    background:#f0f8f5 !important;
    color:#0b3d2e !important;
}

.npcf-wrapper .npcf-edition-link > *,
.npcf-wrapper .npcf-edition-current > *,
.pd-wrapper .npcf-edition-link > *,
.pd-wrapper .npcf-edition-current > *,
.npcf-legacy-content .npcf-edition-link > *,
.npcf-legacy-content .npcf-edition-current > * {
    margin:0 !important;
    padding:0 !important;
    background:transparent !important;
    border:0 !important;
    text-decoration:none !important;
}

.npcf-wrapper .npcf-edition-link span,
.npcf-wrapper .npcf-edition-current span,
.pd-wrapper .npcf-edition-link span,
.pd-wrapper .npcf-edition-current span,
.npcf-legacy-content .npcf-edition-link span,
.npcf-legacy-content .npcf-edition-current span {
    color:#64748b !important;
    font-size:11px !important;
    font-weight:700 !important;
    line-height:1.25 !important;
}

.npcf-wrapper .npcf-edition-link strong,
.npcf-wrapper .npcf-edition-current strong,
.pd-wrapper .npcf-edition-link strong,
.pd-wrapper .npcf-edition-current strong,
.npcf-legacy-content .npcf-edition-link strong,
.npcf-legacy-content .npcf-edition-current strong {
    margin-top:4px !important;
    color:inherit !important;
    font-size:14px !important;
    font-weight:800 !important;
    line-height:1.25 !important;
}

.npcf-wrapper .npcf-edition-link:hover,
.npcf-wrapper .npcf-edition-link:focus-visible,
.pd-wrapper .npcf-edition-link:hover,
.pd-wrapper .npcf-edition-link:focus-visible,
.npcf-legacy-content .npcf-edition-link:hover,
.npcf-legacy-content .npcf-edition-link:focus-visible {
    border-color:#c98945 !important;
    background:#fff4e7 !important;
    background-image:none !important;
    color:#7a2e2e !important;
    transform:none !important;
    box-shadow:none !important;
}

.npcf-wrapper .npcf-edition-link.is-unavailable,
.pd-wrapper .npcf-edition-link.is-unavailable,
.npcf-legacy-content .npcf-edition-link.is-unavailable {
    opacity:.55;
}

@media (max-width:900px) {
    .npcf-wrapper .npcf-journey-steps,
    .npcf-wrapper .npcf-progress-track,
    .pd-wrapper .npcf-journey-steps,
    .pd-wrapper .npcf-progress-track,
    .npcf-legacy-content .npcf-journey-steps,
    .npcf-legacy-content .npcf-progress-track {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:767px) {
    .npcf-wrapper .npcf-journey-engine,
    .pd-wrapper .npcf-journey-engine,
    .npcf-legacy-content .npcf-journey-engine {
        margin:14px 0 18px;
    }

    .npcf-wrapper .npcf-journey-section,
    .pd-wrapper .npcf-journey-section,
    .npcf-legacy-content .npcf-journey-section {
        padding:13px 0;
    }

    .npcf-wrapper .npcf-journey-steps,
    .npcf-wrapper .npcf-progress-track,
    .pd-wrapper .npcf-journey-steps,
    .pd-wrapper .npcf-progress-track,
    .npcf-legacy-content .npcf-journey-steps,
    .npcf-legacy-content .npcf-progress-track {
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:8px;
    }

    .npcf-wrapper .npcf-edition-grid,
    .pd-wrapper .npcf-edition-grid,
    .npcf-legacy-content .npcf-edition-grid {
        grid-template-columns:1fr;
        gap:8px;
    }

    .npcf-wrapper .npcf-edition-current,
    .pd-wrapper .npcf-edition-current,
    .npcf-legacy-content .npcf-edition-current {
        order:-1;
    }
}

@media (max-width:420px) {
    .npcf-wrapper .npcf-journey-steps,
    .npcf-wrapper .npcf-progress-track,
    .pd-wrapper .npcf-journey-steps,
    .pd-wrapper .npcf-progress-track,
    .npcf-legacy-content .npcf-journey-steps,
    .npcf-legacy-content .npcf-progress-track {
        grid-template-columns:1fr;
    }
}

/* =========================================================
   NPCF v4.0.2 — Collector Journey Simplification
   The bulky format/progress tiles are intentionally removed.
   Relationship cards remain the only visible journey UI.
   ========================================================= */
.npcf-wrapper .npcf-journey-engine,
.pd-wrapper .npcf-journey-engine,
.npcf-legacy-content .npcf-journey-engine,
.npcf-conversion-engine > .npcf-journey-engine {
    display: none !important;
}

/* =========================================================
   NPCF v4.1.0 — Smart Recommendation Engine
   ========================================================= */
.npcf-wrapper .npcf-recommendation-grid,
.pd-wrapper .npcf-recommendation-grid,
.npcf-legacy-content .npcf-recommendation-grid {
    align-items: stretch;
}

.npcf-wrapper .npcf-recommendation-card,
.pd-wrapper .npcf-recommendation-card,
.npcf-legacy-content .npcf-recommendation-card {
    display:flex;
    flex-direction:column;
    min-width:0;
    overflow:hidden;
    background:#fffdf9;
    border:1px solid #e7e2d9;
    border-radius:12px;
    box-shadow:none;
    text-decoration:none !important;
}

.npcf-wrapper .npcf-recommendation-card .npcf-pathway-image,
.pd-wrapper .npcf-recommendation-card .npcf-pathway-image,
.npcf-legacy-content .npcf-recommendation-card .npcf-pathway-image {
    display:block;
    background:#fff;
    border:0 !important;
    text-decoration:none !important;
}

.npcf-wrapper .npcf-recommendation-body,
.pd-wrapper .npcf-recommendation-body,
.npcf-legacy-content .npcf-recommendation-body {
    display:flex;
    flex:1 1 auto;
    flex-direction:column;
    gap:8px;
    padding:12px;
}

.npcf-wrapper .npcf-recommendation-badge,
.pd-wrapper .npcf-recommendation-badge,
.npcf-legacy-content .npcf-recommendation-badge {
    align-self:flex-start;
    margin:0;
    padding:5px 9px;
    border:1px solid #e4b979;
    border-radius:999px;
    background:#fffaf2;
    color:#7b271f;
    font-size:12px;
    font-weight:800;
    line-height:1.2;
}

.npcf-wrapper .npcf-recommendation-card .npcf-pathway-title,
.pd-wrapper .npcf-recommendation-card .npcf-pathway-title,
.npcf-legacy-content .npcf-recommendation-card .npcf-pathway-title {
    color:#16243a !important;
    font-weight:800;
    line-height:1.35;
    text-decoration:none !important;
    background:none !important;
}

.npcf-wrapper .npcf-recommendation-reason,
.pd-wrapper .npcf-recommendation-reason,
.npcf-legacy-content .npcf-recommendation-reason {
    color:#5a6b82;
    font-size:13px;
    line-height:1.45;
}

.npcf-wrapper .npcf-recommendation-card .npcf-pathway-price,
.pd-wrapper .npcf-recommendation-card .npcf-pathway-price,
.npcf-legacy-content .npcf-recommendation-card .npcf-pathway-price {
    margin-top:auto;
    color:#7b271f;
    font-weight:800;
}

.npcf-wrapper .npcf-recommendation-action,
.pd-wrapper .npcf-recommendation-action,
.npcf-legacy-content .npcf-recommendation-action {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    margin-top:2px;
    padding:8px 12px;
    border:1px solid #8f302d;
    border-radius:9px;
    background:#8f302d !important;
    color:#fff !important;
    font-size:13px;
    font-weight:800;
    line-height:1.2;
    text-align:center;
    text-decoration:none !important;
}

.npcf-wrapper .npcf-recommendation-action:hover,
.npcf-wrapper .npcf-recommendation-action:focus-visible,
.pd-wrapper .npcf-recommendation-action:hover,
.pd-wrapper .npcf-recommendation-action:focus-visible,
.npcf-legacy-content .npcf-recommendation-action:hover,
.npcf-legacy-content .npcf-recommendation-action:focus-visible {
    background:#0b3d2e !important;
    border-color:#0b3d2e;
    color:#fff !important;
    text-decoration:none !important;
}

@media (max-width:767px) {
    .npcf-wrapper .npcf-recommendation-body,
    .pd-wrapper .npcf-recommendation-body,
    .npcf-legacy-content .npcf-recommendation-body {
        padding:11px;
    }
}


/* =========================================================
   NPCF v4.1.1 — Universal Recommendation Card Renderer
   One isolated visual system for modern and legacy product pages.
   ========================================================= */
.npcf-smart-recommendations {
    box-sizing:border-box !important;
}

.npcf-smart-recommendations *,
.npcf-smart-recommendations *::before,
.npcf-smart-recommendations *::after {
    box-sizing:border-box !important;
}

.npcf-smart-recommendations .npcf-recommendation-grid {
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    align-items:stretch !important;
    gap:12px !important;
    margin:0 !important;
    padding:0 !important;
}

.npcf-smart-recommendations .npcf-recommendation-card {
    display:flex !important;
    flex-direction:column !important;
    min-width:0 !important;
    height:100% !important;
    margin:0 !important;
    padding:0 !important;
    overflow:hidden !important;
    border:1px solid #e7e2d9 !important;
    border-radius:12px !important;
    background:#fffdf9 !important;
    box-shadow:none !important;
    color:#16243a !important;
    text-decoration:none !important;
    transform:none !important;
}

.npcf-smart-recommendations .npcf-recommendation-card:hover {
    border-color:#d9cbb8 !important;
    box-shadow:none !important;
    transform:none !important;
}

.npcf-smart-recommendations .npcf-pathway-image {
    display:block !important;
    width:100% !important;
    aspect-ratio:4 / 3 !important;
    margin:0 !important;
    padding:0 !important;
    overflow:hidden !important;
    border:0 !important;
    border-radius:0 !important;
    background:#fff !important;
    background-image:none !important;
    color:inherit !important;
    text-decoration:none !important;
}

.npcf-smart-recommendations .npcf-pathway-image::before,
.npcf-smart-recommendations .npcf-pathway-image::after {
    display:none !important;
    content:none !important;
}

.npcf-smart-recommendations .npcf-pathway-image img {
    display:block !important;
    width:100% !important;
    height:100% !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    border-radius:0 !important;
    object-fit:contain !important;
}

.npcf-smart-recommendations .npcf-recommendation-body {
    display:flex !important;
    flex:1 1 auto !important;
    flex-direction:column !important;
    gap:8px !important;
    min-width:0 !important;
    margin:0 !important;
    padding:12px !important;
    background:#fffaf4 !important;
}

.npcf-smart-recommendations .npcf-recommendation-badge {
    display:inline-flex !important;
    align-items:center !important;
    align-self:flex-start !important;
    width:auto !important;
    max-width:100% !important;
    min-height:28px !important;
    margin:0 !important;
    padding:5px 9px !important;
    border:1px solid #e4b979 !important;
    border-radius:999px !important;
    background:#fffaf2 !important;
    color:#7b271f !important;
    font-size:12px !important;
    font-weight:800 !important;
    line-height:1.2 !important;
    white-space:normal !important;
    text-decoration:none !important;
}

.npcf-smart-recommendations .npcf-pathway-title,
.npcf-smart-recommendations .npcf-pathway-title:link,
.npcf-smart-recommendations .npcf-pathway-title:visited,
.npcf-smart-recommendations .npcf-pathway-title:hover,
.npcf-smart-recommendations .npcf-pathway-title:focus,
.npcf-smart-recommendations .npcf-pathway-title:active {
    display:block !important;
    min-height:3.9em !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    background:transparent !important;
    background-image:none !important;
    color:#16243a !important;
    font-size:14px !important;
    font-weight:800 !important;
    line-height:1.3 !important;
    text-decoration:none !important;
    text-decoration-line:none !important;
    text-underline-offset:0 !important;
    box-shadow:none !important;
}

.npcf-smart-recommendations .npcf-pathway-title::before,
.npcf-smart-recommendations .npcf-pathway-title::after {
    display:none !important;
    content:none !important;
}

.npcf-smart-recommendations .npcf-recommendation-reason {
    display:block !important;
    min-height:4.35em !important;
    margin:0 !important;
    padding:0 !important;
    color:#5a6b82 !important;
    font-size:13px !important;
    font-weight:600 !important;
    line-height:1.45 !important;
}

.npcf-smart-recommendations .npcf-pathway-price {
    display:block !important;
    margin:auto 0 0 !important;
    padding:0 !important;
    color:#7b271f !important;
    font-size:13px !important;
    font-weight:800 !important;
    line-height:1.35 !important;
}

.npcf-smart-recommendations .npcf-pathway-price del,
.npcf-smart-recommendations .npcf-pathway-price ins {
    display:inline !important;
    color:inherit !important;
}

.npcf-smart-recommendations .npcf-recommendation-action,
.npcf-smart-recommendations .npcf-recommendation-action:link,
.npcf-smart-recommendations .npcf-recommendation-action:visited {
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:100% !important;
    min-height:38px !important;
    margin:2px 0 0 !important;
    padding:8px 12px !important;
    border:1px solid #8f302d !important;
    border-radius:9px !important;
    background:#8f302d !important;
    background-image:none !important;
    color:#fff !important;
    font-size:13px !important;
    font-weight:800 !important;
    line-height:1.2 !important;
    text-align:center !important;
    text-decoration:none !important;
    box-shadow:none !important;
}

.npcf-smart-recommendations .npcf-recommendation-action:hover,
.npcf-smart-recommendations .npcf-recommendation-action:focus-visible,
.npcf-smart-recommendations .npcf-recommendation-action:active {
    border-color:#0b3d2e !important;
    background:#0b3d2e !important;
    color:#fff !important;
    text-decoration:none !important;
    box-shadow:none !important;
}

@media (max-width:900px) {
    .npcf-smart-recommendations .npcf-recommendation-grid {
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    }
}

@media (max-width:520px) {
    .npcf-smart-recommendations .npcf-recommendation-grid {
        grid-template-columns:1fr !important;
        gap:10px !important;
    }
    .npcf-smart-recommendations .npcf-pathway-title,
    .npcf-smart-recommendations .npcf-recommendation-reason {
        min-height:0 !important;
    }
}

/* NPCF v4.2.0 — Recommendation Precision & Intent Protection */
.npcf-smart-recommendations .npcf-recommendation-card[data-npcf-confidence="0"] {
    display:none !important;
}

.npcf-smart-recommendations .npcf-recommendation-card[data-npcf-relationship="included-in-set"],
.npcf-smart-recommendations .npcf-recommendation-card[data-npcf-relationship="same-issue-format"],
.npcf-smart-recommendations .npcf-recommendation-card[data-npcf-relationship="same-issue-quantity"] {
    border-color:#d9a85f !important;
}

.npcf-smart-recommendations .npcf-recommendation-card[data-npcf-relationship="included-in-set"] .npcf-recommendation-badge,
.npcf-smart-recommendations .npcf-recommendation-card[data-npcf-relationship="same-issue-format"] .npcf-recommendation-badge,
.npcf-smart-recommendations .npcf-recommendation-card[data-npcf-relationship="same-issue-quantity"] .npcf-recommendation-badge {
    border-color:#c99a51 !important;
    background:#fff7e8 !important;
}


/* NPCF v5.0.1 — Phase 2 Purchase Psychology Engine */
.npcf-smart-recommendations .npcf-recommendation-labels {
    display:flex !important;
    flex-wrap:wrap !important;
    align-items:center !important;
    gap:6px !important;
    min-height:26px !important;
    margin:0 !important;
    padding:0 !important;
}

.npcf-smart-recommendations .npcf-psychology-status {
    display:inline-flex !important;
    align-items:center !important;
    min-height:24px !important;
    margin:0 !important;
    padding:4px 8px !important;
    border:1px solid #d7dee8 !important;
    border-radius:999px !important;
    background:#f8fafc !important;
    color:#334155 !important;
    font-size:10px !important;
    font-weight:800 !important;
    line-height:1 !important;
    letter-spacing:.02em !important;
    text-transform:uppercase !important;
    white-space:nowrap !important;
}

.npcf-smart-recommendations .npcf-status-special-price {
    border-color:#dfb46e !important;
    background:#fff7e8 !important;
    color:#7b4312 !important;
}
.npcf-smart-recommendations .npcf-status-low-stock {
    border-color:#e2b5ae !important;
    background:#fff4f2 !important;
    color:#8a2f25 !important;
}
.npcf-smart-recommendations .npcf-status-collector-favorite,
.npcf-smart-recommendations .npcf-status-new-arrival {
    border-color:#b9d1c8 !important;
    background:#f1f8f5 !important;
    color:#0b3d2e !important;
}

.npcf-smart-recommendations .npcf-psychology-value {
    display:block !important;
    margin:-2px 0 0 !important;
    padding:0 !important;
    color:#0b3d2e !important;
    font-size:12px !important;
    font-weight:800 !important;
    line-height:1.35 !important;
}

.npcf-smart-recommendations .npcf-psychology-nudge {
    max-width:760px !important;
    margin:10px auto 0 !important;
    padding:9px 12px !important;
    border-left:3px solid #d3a55f !important;
    border-radius:0 7px 7px 0 !important;
    background:#fffaf2 !important;
    color:#43546a !important;
    font-size:13px !important;
    font-weight:650 !important;
    line-height:1.45 !important;
    text-align:left !important;
}

@media (max-width:520px) {
    .npcf-smart-recommendations .npcf-recommendation-labels {
        min-height:0 !important;
    }
    .npcf-smart-recommendations .npcf-psychology-nudge {
        margin-top:8px !important;
        font-size:12px !important;
    }
}

/* NPCF v5.0.2 — Phase 3 Intelligent Conversion Ranking.
 * No visual redesign: preserves the stable v5.0.1 recommendation cards.
 */


/* NPCF v5.0.3 — Phase 4 stability, strict rendering and link reset. */
.npcf-smart-recommendations .npcf-recommendation-action,
.npcf-smart-recommendations .npcf-recommendation-action *,
.npcf-smart-recommendations .npcf-recommendation-action::before,
.npcf-smart-recommendations .npcf-recommendation-action::after {
    text-decoration:none !important;
    text-decoration-line:none !important;
    border-bottom:0 !important;
    background-image:none !important;
    box-shadow:none !important;
}
.npcf-smart-recommendations .npcf-recommendation-action:hover,
.npcf-smart-recommendations .npcf-recommendation-action:focus,
.npcf-smart-recommendations .npcf-recommendation-action:active,
.npcf-smart-recommendations .npcf-recommendation-action:hover *,
.npcf-smart-recommendations .npcf-recommendation-action:focus *,
.npcf-smart-recommendations .npcf-recommendation-action:active * {
    text-decoration:none !important;
    border-bottom:0 !important;
    background-image:none !important;
}
.npcf-smart-recommendations .npcf-pathway-title,
.npcf-smart-recommendations .npcf-pathway-title:link,
.npcf-smart-recommendations .npcf-pathway-title:visited,
.npcf-smart-recommendations .npcf-pathway-title:hover,
.npcf-smart-recommendations .npcf-pathway-title:focus {
    text-decoration:none !important;
    border-bottom:0 !important;
    background-image:none !important;
}


/* =========================================================
   NPCF v5.2.0 — Smart Denomination Navigation
   ========================================================= */
.npcf-denomination-nav {
    box-sizing: border-box;
    width: 100%;
    margin: 22px 0 18px;
    padding: 14px 16px 15px;
    border: 1px solid #e5ded2;
    border-radius: 10px;
    background: #fffdf8;
}

.npcf-denomination-nav,
.npcf-denomination-nav * {
    box-sizing: border-box;
}

.npcf-denomination-nav__heading {
    margin: 0 0 10px;
    color: #6f4c1f;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.npcf-denomination-nav__track {
    display: flex;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1px 1px 4px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.npcf-denomination-nav__item,
a.npcf-denomination-nav__item {
    display: inline-flex;
    flex: 0 0 auto;
    min-width: 58px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #d7c7aa;
    border-radius: 8px;
    background: #ffffff;
    color: #173d33 !important;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.1;
    text-align: center;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

a.npcf-denomination-nav__item:hover,
a.npcf-denomination-nav__item:focus-visible {
    border-color: #b78b35;
    background: #f8f1df;
    color: #0b3d2e !important;
    text-decoration: none !important;
    outline: 2px solid transparent;
}

.npcf-denomination-nav__item.is-current {
    flex-direction: column;
    gap: 3px;
    border-color: #0b3d2e;
    background: #0b3d2e;
    color: #ffffff !important;
    cursor: default;
}

.npcf-denomination-nav__current {
    color: #f3dd85;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .npcf-denomination-nav {
        margin: 18px 0 16px;
        padding: 12px 12px 13px;
        border-radius: 9px;
    }

    .npcf-denomination-nav__track {
        gap: 7px;
        padding-bottom: 5px;
    }

    .npcf-denomination-nav__item,
    a.npcf-denomination-nav__item {
        min-width: 56px;
        min-height: 40px;
        padding: 7px 10px;
        font-size: 12px;
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .npcf-denomination-nav__item,
    a.npcf-denomination-nav__item {
        transition: none;
    }
}

/* NPCF v5.5.4 — mobile recommendation repair.
 * Preserve a true 2×2 collector grid on phones and reduce heading/card
 * density so the section remains readable without horizontal distortion. */
@media (max-width:520px) {
  .npcf-smart-recommendations {
    padding:14px 12px !important;
    overflow:hidden !important;
  }
  .npcf-smart-recommendations .npcf-pathway-heading {
    margin-bottom:12px !important;
  }
  .npcf-smart-recommendations .npcf-pathway-heading h2 {
    margin:5px 0 8px !important;
    font-size:24px !important;
    line-height:1.18 !important;
  }
  .npcf-smart-recommendations .npcf-pathway-heading > p:not(.npcf-psychology-nudge) {
    margin:0 0 10px !important;
    font-size:14px !important;
    line-height:1.55 !important;
  }
  .npcf-smart-recommendations .npcf-psychology-nudge {
    margin:0 0 12px !important;
    padding:10px 11px !important;
    font-size:12px !important;
    line-height:1.45 !important;
  }
  .npcf-smart-recommendations .npcf-recommendation-grid,
  .npcf-smart-recommendations .npcf-pathway-grid {
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:10px !important;
    width:100% !important;
  }
  .npcf-smart-recommendations .npcf-recommendation-card {
    min-width:0 !important;
    border-radius:10px !important;
  }
  .npcf-smart-recommendations .npcf-pathway-image {
    aspect-ratio:4 / 3 !important;
    min-height:0 !important;
  }
  .npcf-smart-recommendations .npcf-recommendation-body {
    gap:6px !important;
    padding:9px !important;
  }
  .npcf-smart-recommendations .npcf-recommendation-labels {
    gap:4px !important;
  }
  .npcf-smart-recommendations .npcf-recommendation-badge,
  .npcf-smart-recommendations .npcf-psychology-status {
    min-height:0 !important;
    padding:4px 6px !important;
    font-size:9px !important;
    line-height:1.15 !important;
  }
  .npcf-smart-recommendations .npcf-pathway-title,
  .npcf-smart-recommendations .npcf-recommendation-reason {
    min-height:0 !important;
  }
  .npcf-smart-recommendations .npcf-pathway-title {
    font-size:12px !important;
    line-height:1.25 !important;
  }
  .npcf-smart-recommendations .npcf-recommendation-reason {
    font-size:10px !important;
    line-height:1.38 !important;
  }
  .npcf-smart-recommendations .npcf-pathway-price {
    font-size:11px !important;
  }
  .npcf-smart-recommendations .npcf-recommendation-action {
    min-height:34px !important;
    padding:7px 6px !important;
    font-size:10px !important;
    line-height:1.15 !important;
  }
}
@media (max-width:340px) {
  .npcf-smart-recommendations .npcf-recommendation-grid,
  .npcf-smart-recommendations .npcf-pathway-grid {
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:7px !important;
  }
  .npcf-smart-recommendations .npcf-recommendation-body { padding:7px !important; }
  .npcf-smart-recommendations .npcf-pathway-heading h2 { font-size:21px !important; }
}


/* NPCF v5.5.5 — force the recommendation cards into 2×2 on phones and tablets. */
@media (max-width:900px) {
  body.single-product .npcf-smart-recommendations .npcf-recommendation-grid,
  body.single-product .npcf-smart-recommendations .npcf-pathway-grid,
  body.single-product .npcf-conversion-engine.npcf-smart-recommendations .npcf-recommendation-grid {
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    grid-auto-flow:row !important;
    gap:10px !important;
    width:100% !important;
    overflow:visible !important;
  }
  body.single-product .npcf-smart-recommendations .npcf-recommendation-card,
  body.single-product .npcf-smart-recommendations .npcf-pathway-card {
    display:flex !important;
    flex-direction:column !important;
    width:auto !important;
    max-width:100% !important;
    min-width:0 !important;
    margin:0 !important;
  }
  body.single-product .npcf-smart-recommendations .npcf-pathway-image {
    width:100% !important;
    min-width:0 !important;
    aspect-ratio:4 / 3 !important;
    overflow:hidden !important;
  }
  body.single-product .npcf-smart-recommendations .npcf-pathway-image img {
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
  }
}

/* NPCF v5.5.6 — Professional Mobile Recommendation Layout
 * Uses the available viewport width, preserves a true 2×2 grid, and
 * normalizes headings, card text, badges, prices and CTA buttons for phones. */
@media (max-width: 767px) {
  body.single-product .npcf-smart-recommendations,
  body.single-product .npcf-conversion-engine.npcf-smart-recommendations {
    width: calc(100vw - 16px) !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw + 8px) !important;
    margin-right: 0 !important;
    padding: 16px 10px !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-pathway-heading {
    margin: 0 0 12px !important;
    padding: 0 2px !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-pathway-heading .npcf-eyebrow,
  body.single-product .npcf-smart-recommendations .npcf-pathway-heading > span:first-child {
    display: block !important;
    margin: 0 0 5px !important;
    font-size: 10px !important;
    line-height: 1.25 !important;
    letter-spacing: .07em !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-pathway-heading h2 {
    margin: 0 0 8px !important;
    font-size: 20px !important;
    line-height: 1.18 !important;
    letter-spacing: -.015em !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-pathway-heading > p:not(.npcf-psychology-nudge) {
    margin: 0 0 10px !important;
    font-size: 13px !important;
    line-height: 1.48 !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-psychology-nudge {
    margin: 0 0 12px !important;
    padding: 9px 10px !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    border-radius: 8px !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-recommendation-grid,
  body.single-product .npcf-smart-recommendations .npcf-pathway-grid,
  body.single-product .npcf-conversion-engine.npcf-smart-recommendations .npcf-recommendation-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    align-items: stretch !important;
    gap: 9px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-recommendation-card,
  body.single-product .npcf-smart-recommendations .npcf-pathway-card {
    display: flex !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    border-radius: 11px !important;
    overflow: hidden !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-pathway-image {
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    min-height: 0 !important;
    padding: 5px !important;
    box-sizing: border-box !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-pathway-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-recommendation-body {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    gap: 7px !important;
    min-width: 0 !important;
    padding: 10px 9px 9px !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-recommendation-labels {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 4px !important;
    min-height: 0 !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-recommendation-badge,
  body.single-product .npcf-smart-recommendations .npcf-psychology-status {
    min-height: 0 !important;
    max-width: 100% !important;
    padding: 4px 6px !important;
    font-size: 9px !important;
    line-height: 1.15 !important;
    white-space: normal !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-pathway-title,
  body.single-product .npcf-smart-recommendations .npcf-pathway-title:link,
  body.single-product .npcf-smart-recommendations .npcf-pathway-title:visited {
    min-height: 0 !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.28 !important;
    letter-spacing: -.01em !important;
    overflow-wrap: anywhere !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-recommendation-reason {
    min-height: 0 !important;
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.42 !important;
    overflow-wrap: anywhere !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-pathway-price {
    margin-top: auto !important;
    padding-top: 2px !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  body.single-product .npcf-smart-recommendations .npcf-recommendation-action,
  body.single-product .npcf-smart-recommendations .npcf-recommendation-action:link,
  body.single-product .npcf-smart-recommendations .npcf-recommendation-action:visited {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 42px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 8px 6px !important;
    border-radius: 8px !important;
    font-size: 11px !important;
    line-height: 1.18 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

@media (max-width: 380px) {
  body.single-product .npcf-smart-recommendations,
  body.single-product .npcf-conversion-engine.npcf-smart-recommendations {
    width: calc(100vw - 10px) !important;
    margin-left: calc(50% - 50vw + 5px) !important;
    padding: 13px 7px !important;
  }
  body.single-product .npcf-smart-recommendations .npcf-recommendation-grid,
  body.single-product .npcf-smart-recommendations .npcf-pathway-grid {
    gap: 7px !important;
  }
  body.single-product .npcf-smart-recommendations .npcf-pathway-heading h2 {
    font-size: 18px !important;
  }
  body.single-product .npcf-smart-recommendations .npcf-pathway-title,
  body.single-product .npcf-smart-recommendations .npcf-pathway-title:link {
    font-size: 13px !important;
  }
  body.single-product .npcf-smart-recommendations .npcf-recommendation-reason {
    font-size: 10.5px !important;
  }
  body.single-product .npcf-smart-recommendations .npcf-recommendation-action,
  body.single-product .npcf-smart-recommendations .npcf-recommendation-action:link {
    min-height: 40px !important;
    font-size: 10.5px !important;
  }
}

/* NPCF v5.5.7 — Full-Width Mobile + Tablet Product Layout
 * Expands the WooCommerce product shell, gallery, summary, tabs and NPCF
 * description blocks across phones, landscape phones and tablets while
 * preserving a safe edge gutter and leaving desktop layouts untouched. */
@media (max-width: 1024px) {
  body.single-product #page,
  body.single-product .site,
  body.single-product .site-content,
  body.single-product #content,
  body.single-product .ast-container,
  body.single-product .site-content > .ast-container,
  body.single-product #primary,
  body.single-product .content-area,
  body.single-product main.site-main {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  body.single-product .site-content > .ast-container,
  body.single-product #content > .ast-container,
  body.single-product .ast-container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  body.single-product #primary,
  body.single-product .content-area,
  body.single-product main.site-main {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.single-product div.product,
  body.single-product .product.type-product,
  body.single-product .woocommerce div.product {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  body.single-product div.product .woocommerce-product-gallery,
  body.single-product div.product .summary,
  body.single-product div.product .entry-summary,
  body.single-product div.product .woocommerce-tabs,
  body.single-product div.product .woocommerce-tabs .panel,
  body.single-product div.product .woocommerce-Tabs-panel,
  body.single-product .woocommerce-tabs,
  body.single-product .woocommerce-tabs .panel {
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  body.single-product div.product .woocommerce-product-gallery,
  body.single-product div.product .summary,
  body.single-product div.product .entry-summary {
    width: 100% !important;
  }

  body.single-product div.product .woocommerce-product-gallery {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.single-product div.product .woocommerce-product-gallery__wrapper,
  body.single-product div.product .woocommerce-product-gallery__image,
  body.single-product div.product .woocommerce-product-gallery__image a,
  body.single-product div.product .woocommerce-product-gallery__image img {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.single-product div.product .woocommerce-product-gallery__image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  body.single-product div.product .flex-control-thumbs,
  body.single-product div.product .woocommerce-product-gallery .flex-control-nav {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }

  body.single-product div.product .summary,
  body.single-product div.product .entry-summary {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.single-product div.product .woocommerce-tabs,
  body.single-product .woocommerce-tabs {
    width: calc(100vw - 16px) !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw + 8px) !important;
    margin-right: 0 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box !important;
  }

  body.single-product div.product .woocommerce-tabs .panel,
  body.single-product div.product .woocommerce-Tabs-panel,
  body.single-product .woocommerce-tabs .panel {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.single-product .woocommerce-tabs ul.tabs {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }

  body.single-product .pd-wrapper,
  body.single-product .npcf-wrapper,
  body.single-product .woocommerce-Tabs-panel .pd-wrapper,
  body.single-product .woocommerce-Tabs-panel .npcf-wrapper,
  body.single-product .woocommerce-Tabs-panel--description > .pd-wrapper,
  body.single-product .woocommerce-Tabs-panel--description > .npcf-wrapper {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  body.single-product .pd-wrapper > *,
  body.single-product .npcf-wrapper > *,
  body.single-product .pd-section,
  body.single-product .pd-note-card,
  body.single-product .pd-specs,
  body.single-product .pd-trust-grid,
  body.single-product .npcf-section,
  body.single-product .npcf-card,
  body.single-product .npcf-trust-grid {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 767px) {
  body.single-product .site-content > .ast-container,
  body.single-product #content > .ast-container,
  body.single-product .ast-container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  body.single-product div.product,
  body.single-product .product.type-product {
    width: calc(100vw - 16px) !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw + 8px) !important;
    margin-right: 0 !important;
  }

  body.single-product div.product .woocommerce-product-gallery,
  body.single-product div.product .summary,
  body.single-product div.product .entry-summary {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  body.single-product .woocommerce-tabs,
  body.single-product div.product .woocommerce-tabs {
    width: calc(100vw - 12px) !important;
    margin-left: calc(50% - 50vw + 6px) !important;
    padding: 12px 8px !important;
    border-radius: 16px !important;
  }

  body.single-product .woocommerce-tabs .panel,
  body.single-product .woocommerce-Tabs-panel {
    padding: 0 !important;
  }

  body.single-product .pd-section,
  body.single-product .npcf-section,
  body.single-product .pd-note-card,
  body.single-product .npcf-card {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 14px !important;
  }

  body.single-product .pd-specs,
  body.single-product .pd-trust-grid,
  body.single-product .npcf-specs,
  body.single-product .npcf-trust-grid {
    width: 100% !important;
    gap: 10px !important;
  }

  body.single-product .woocommerce-tabs .panel p,
  body.single-product .woocommerce-Tabs-panel p,
  body.single-product .pd-wrapper p,
  body.single-product .npcf-wrapper p {
    overflow-wrap: anywhere !important;
  }
}

/* Landscape phones and compact tablets: preserve the expanded shell and use
 * the horizontal space without reintroducing desktop gutters. */
@media (min-width: 568px) and (max-width: 1024px) and (orientation: landscape) {
  body.single-product .site-content > .ast-container,
  body.single-product #content > .ast-container,
  body.single-product .ast-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  body.single-product div.product,
  body.single-product .product.type-product,
  body.single-product .woocommerce-tabs,
  body.single-product div.product .woocommerce-tabs {
    width: calc(100vw - 24px) !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw + 12px) !important;
    margin-right: 0 !important;
  }

  body.single-product div.product .woocommerce-product-gallery,
  body.single-product div.product .summary,
  body.single-product div.product .entry-summary {
    box-sizing: border-box !important;
  }
}

/* NPCF v5.5.9 dedicated cross-browser overrides are loaded from npcf-cross-browser-5.5.9.css. */
