@charset "UTF-8";
/**
 * Single-product PDP styles. Reuses the shared catalog tokens (--npt-blue /
 * --npt-lime / --npt-ink / --npt-line / --npt-muted) emitted by
 * assets/css/catalog-search.css on .npt-catalog; the PDP wrapper re-declares them
 * so the sheet is self-sufficient if enqueued alone.
 *
 * Fluid layout (clamp + minmax), no fixed breakpoints where avoidable; the
 * two-column main collapses to one column below ~860px via a single query.
 */
/* Astra wrappers: let the PDP go full-bleed. The theme caps .ast-container at
   ~1240px with 20px side padding and adds a top margin on the content area; the
   PDP's own sections re-constrain their content via .npt-pdp__inner, so we drop
   both here and let the hero + related bands span the full viewport width. */
.single-product .ast-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.single-product .ast-container #primary {
  margin: 0;
}
.single-product .site-content {
  padding-top: 0;
}

.npt-pdp {
  --npt-blue: #0057B8;
  --npt-lime: #DFFF00;
  --npt-ink: #111111;
  --npt-line: #e2e5ea;
  --npt-muted: #6b7280;
  font-family: "Source Sans Pro", system-ui, -apple-system, sans-serif;
  color: var(--npt-ink);
}
.npt-pdp .npt-pdp__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* Hero — full-bleed banner image (per-category, see npt_pdp_hero_bg) with a dark
   overlay; content centered vertically in a 375px-min band. Title is NOT an <h1>
   (the summary keeps the single <h1>). */
.npt-pdp-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 375px;
  background-color: var(--npt-blue); /* fallback before/without an image */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.npt-pdp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.53);
  z-index: 0;
}
.npt-pdp-hero .npt-catalog-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.npt-pdp-hero .npt-catalog-hero__title {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.npt-pdp-hero .npt-catalog-hero__crumbs a {
  color: #fff;
  text-decoration: none;
}
.npt-pdp-hero .npt-catalog-hero__crumbs a:hover {
  color: var(--npt-lime);
}

/* Two-column main. */
.npt-pdp__main {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.npt-pdp__main .npt-pdp__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 860px) {
  .npt-pdp__main .npt-pdp__inner {
    grid-template-columns: 1fr;
  }
}
/* Media column. */
.npt-pdp__media {
  position: relative;
}

/* Camso reman-friendly badge — overlays the product image top-left when the
   product's `types` meta is a Remanufactured line (see npt_pdp_reman_badge_url). */
.npt-pdp__reman-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: clamp(72px, 24%, 118px);
  height: auto;
  pointer-events: none;
}

.npt-pdp__figure {
  background: #f4f5f7;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  aspect-ratio: 4/3;
  flex-flow: column;
}
.npt-pdp__figure--empty {
  aspect-ratio: 4/3;
}

.npt-pdp__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
}

/* Magnify affordance over the product image (top-right). Scoped deep
   (.npt-pdp .npt-pdp__media …) to outrank Elementor's global
   `.elementor-kit-9 button` rule, which otherwise swallows the icon; padding is
   forced to the requested 11.5px/5px over Elementor's button padding. */
.npt-pdp .npt-pdp__media .npt-pdp__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11.5px !important;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.6);
  color: #fff;
  line-height: 0;
  cursor: zoom-in;
  transition: background 0.15s;
}
.npt-pdp .npt-pdp__media .npt-pdp__zoom:hover, .npt-pdp .npt-pdp__media .npt-pdp__zoom:focus-visible {
  background: var(--npt-blue);
  outline: none;
}
.npt-pdp .npt-pdp__media .npt-pdp__zoom svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Fullscreen image lightbox. */
.npt-pdp__lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 4rem);
  background: rgba(0, 0, 0, 0.85);
}
.npt-pdp__lightbox[hidden] {
  display: none;
}

.npt-pdp__lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.npt-pdp__lightbox-close {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}
.npt-pdp__lightbox-close:hover, .npt-pdp__lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.3);
  outline: none;
}

body.npt-pdp-lightbox-open {
  overflow: hidden;
}

.npt-pdp__thumbs {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.npt-pdp__thumb {
  padding: 0;
  border: 2px solid var(--npt-line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
  transition: border-color 0.15s;
}
.npt-pdp__thumb img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.npt-pdp__thumb:hover, .npt-pdp__thumb:focus-visible {
  border-color: var(--npt-blue);
  outline: none;
}

/* Summary column. position:relative so any absolutely-positioned child (e.g. a
   category flash injected by another hook) is contained here, not the viewport. */
.npt-pdp__summary {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.npt-pdp__badge {
  display: inline-block;
  background: var(--npt-lime);
  color: var(--npt-ink);
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.npt-pdp__subcat {
  display: inline-block;
  background: var(--npt-blue);
  color: #fff;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.npt-pdp__fits {
  margin: 0;
  font-size: 0.95rem;
  color: var(--npt-muted);
}
.npt-pdp__fits strong {
  color: var(--npt-blue);
  font-weight: 800;
}

.npt-pdp__title {
  margin: 0;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  color: var(--npt-ink);
}

.npt-pdp__spec {
  margin: 0;
  font-size: 1.05rem;
  color: var(--npt-ink);
}

/* Secondary description line (Agriculture) — muted, directly under the spec. */
.npt-pdp__spec2 {
  margin: 0;
  font-size: 0.92rem;
  color: var(--npt-muted);
}

.npt-pdp__mspn {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--npt-muted);
}
.npt-pdp__mspn .npt-pdp__mspn-value {
  color: var(--npt-ink);
  font-weight: 600;
}
.npt-pdp__mspn .npt-pdp__mspn-empty {
  font-style: italic;
}

/* Variation picker. */
.npt-pdp__variations {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0.25rem 0;
  width: 100%;
}

.npt-pdp__attr {
  border: 0;
  margin: 0;
  padding: 0;
}

.npt-pdp__attr-label {
  padding: 0;
  margin-bottom: 0.5rem;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--npt-ink);
}

.npt-pdp__attr-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.npt-pdp__option {
  position: relative;
  cursor: pointer;
}
.npt-pdp__option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.npt-pdp__option span {
  display: inline-block;
  padding: 0.55rem 1.15rem;
  border: 1.5px solid var(--npt-line);
  border-radius: 999px;
  font-weight: 600;
  color: var(--npt-ink);
  transition: 0.15s;
}
.npt-pdp__option input:checked + span {
  background: var(--npt-blue);
  border-color: var(--npt-blue);
  color: #fff;
}
.npt-pdp__option input:focus-visible + span {
  outline: 2px solid var(--npt-blue);
  outline-offset: 2px;
}
.npt-pdp__option:hover span {
  border-color: var(--npt-blue);
}

/* Brochure + dealer links — each on its own line (stacked), above the
   Get-a-Price button (prod order), with their reused prod SVG icons. */
.npt-pdp__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.npt-pdp__link-icon {
  flex: 0 0 auto;
  width: auto;
  height: 1.15em;
  display: block;
}

/* Actions. */
.npt-pdp__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.npt-pdp__price {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--npt-ink);
  color: #fff;
  text-decoration: none;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  transition: 0.15s;
}
.npt-pdp__price:hover {
  background: var(--npt-lime);
  color: var(--npt-ink);
}

.npt-pdp__brochure,
.npt-pdp__dealer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--npt-ink);
  text-decoration: none;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}
.npt-pdp__brochure:hover,
.npt-pdp__dealer:hover {
  color: var(--npt-blue);
}

/* Store mode (inert until npt_store_mode is on) — price + Woo add-to-cart. */
.npt-pdp__store {
  width: 100%;
}

.npt-pdp__pricetag {
  margin: 0 0 0.5rem;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--npt-ink);
}

/* Performance section. */
.npt-pdp__performance {
  background: #f3f4f6;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.npt-pdp__section-title {
  margin: 0 0 1.5rem;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--npt-ink);
}

.npt-pdp__perf-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.npt-pdp__perf-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--npt-line);
  border-radius: 12px;
  border-top: 4px solid var(--npt-lime);
}

.npt-pdp__perf-number {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--npt-blue);
  line-height: 1.1;
}

.npt-pdp__perf-text {
  color: var(--npt-ink);
  font-size: 0.95rem;
}

/* Fits-These-Vehicles chart — full-width white band between Performance and
   Related. Collapsible brand groups (native <details>), a client-side text filter
   (fitment-chart.js), and per-industry columns (see npt_fitchart_columns). */
.npt-fitchart {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: #fff;
  --npt-blue: #0057B8;
  --npt-ink: #111111;
  --npt-line: #e2e5ea;
  --npt-muted: #6b7280;
}

.npt-fitchart__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 1.25rem;
}

.npt-fitchart__title {
  margin: 0;
}

.npt-fitchart__count {
  margin: 0;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--npt-blue);
  letter-spacing: 0.02em;
}

.npt-fitchart__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.npt-fitchart__filter-label {
  flex: 1 1 260px;
  max-width: 420px;
  margin: 0;
}

.npt-fitchart__filter {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--npt-line);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--npt-ink);
  background: #fff;
  transition: border-color 0.15s;
}
.npt-fitchart__filter:focus-visible {
  outline: none;
  border-color: var(--npt-blue);
}

.npt-fitchart__toggle-all {
  flex: 0 0 auto;
  padding: 0.55rem 1.15rem;
  border: 1.5px solid var(--npt-line);
  border-radius: 999px;
  background: #fff;
  color: var(--npt-ink);
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: 0.15s;
}
.npt-fitchart__toggle-all:hover, .npt-fitchart__toggle-all:focus-visible {
  border-color: var(--npt-blue);
  color: var(--npt-blue);
  outline: none;
}

.npt-fitchart__noresults {
  margin: 0 0 1rem;
  color: var(--npt-muted);
  font-size: 0.95rem;
}

.npt-fitchart__groups {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.npt-fitchart__group {
  border: 1px solid var(--npt-line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.npt-fitchart__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  list-style: none;
  background: #f7f8fa;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--npt-ink);
  transition: background 0.15s;
}
.npt-fitchart__brand::-webkit-details-marker {
  display: none;
}
.npt-fitchart__brand::marker {
  content: "";
}
.npt-fitchart__brand::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--npt-blue);
  border-bottom: 2px solid var(--npt-blue);
  transform: rotate(-45deg);
  transition: transform 0.15s;
  flex: 0 0 auto;
}
.npt-fitchart__brand:hover {
  background: #eef1f6;
}

.npt-fitchart__group[open] > .npt-fitchart__brand::before {
  transform: rotate(45deg);
}

.npt-fitchart__brand-name {
  flex: 1 1 auto;
}

.npt-fitchart__brand-count {
  flex: 0 0 auto;
  min-width: 1.6rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: var(--npt-blue);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.npt-fitchart__table-wrap {
  overflow-x: auto;
}

.npt-fitchart__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.npt-fitchart__table th,
.npt-fitchart__table td {
  padding: 0.6rem 1.1rem;
  text-align: left;
  border-top: 1px solid var(--npt-line);
  vertical-align: top;
}
.npt-fitchart__table thead th {
  border-top: 0;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--npt-muted);
  white-space: nowrap;
}
.npt-fitchart__table tbody tr:nth-child(even) {
  background: #fafbfc;
}

.npt-fitchart__model {
  font-weight: 600;
  color: var(--npt-ink);
}

.npt-fitchart__cell {
  color: var(--npt-muted);
}
.npt-fitchart__cell--position {
  white-space: nowrap;
}
.npt-fitchart__cell--years {
  white-space: nowrap;
}

/* Related strip — grey band, centered heading. */
.npt-pdp__related {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: #f3f4f6;
}
.npt-pdp__related .npt-pdp__section-title {
  text-align: center;
}

/* Sparse-row related grid: flex + centered, per-card width driven by
   --npt-cols-eff (set in npt_related_products_shortcode): 2 → ~50%, 3 → 33.3%,
   4 → 25%. calc() subtracts the shared gap so N cards never overflow into a wrap. */
.npt-products.npt-products--fit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.npt-products.npt-products--fit > .npt-card {
  flex: 0 1 calc((100% - (var(--npt-cols-eff, 4) - 1) * 1.5rem) / var(--npt-cols-eff, 4));
  max-width: calc((100% - (var(--npt-cols-eff, 4) - 1) * 1.5rem) / var(--npt-cols-eff, 4));
}

@media (max-width: 900px) {
  .npt-products.npt-products--fit > .npt-card {
    flex-basis: calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
  }
}
@media (max-width: 600px) {
  .npt-products.npt-products--fit > .npt-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/*# sourceMappingURL=single-product.css.map */
