/** Shopify CDN: Minification failed

Line 2520:0 Unexpected "}"

**/
/* =====================================================
   NW IMMERSION — Product Detail Page Stylesheet
   Pixel-perfect Figma build: node 2017:2484
   Fonts: Articulat CF (headings) 
   ===================================================== */

/* ── CSS VARIABLES ─────────────────────────────────── */
:root {
  --nw-primary:       #252220;
  --nw-white:           #fff;
  --nw-accent:        #546659;
  --nw-accent-dark:   #3d4e42;
  --nw-cream:         #FBEFDB;
  --nw-cream-border:  #F9E3BE;
  --nw-divider:       rgba(37,34,32,0.24);
  --nw-dark-overlay:  rgba(0,0,0,0.7);

    --nw-font-body: var(--font-body--family);
  --nw-font-head: var(--font-heading--family);

  --nw-page-px: 100px;
  --nw-inner-max: 1720px;
}

/* ── BASE RESET ────────────────────────────────────── */
.nw-pdp-section,
.nw-pdp-section * {
  box-sizing: border-box;
}
.nw-pdp-section {
  font-family: var(--nw-font-body);
  color: var(--nw-primary) !important;
  background: var(--nw-white) !important;

  /* ── Bridge theme color-scheme system ─────────────
     The base theme applies colors via --color-foreground,
     --font-h1--color, etc. We override those CSS vars
     at the section level so ALL inherited rules
     (headings, body text, links, buttons) resolve to
     the NW palette instead of the store color scheme. */
  --color: var(--nw-primary);
  --color-foreground: var(--nw-primary);
  --color-foreground-rgb: 37, 34, 32;
  --color-foreground-heading: var(--nw-primary);
  --color-foreground-heading-rgb: 37, 34, 32;
  --color-background: var(--nw-white);
  --color-background-rgb: 252, 252, 252;
  --color-border: var(--nw-divider);
  --color-border-rgb: 37, 34, 32;
  --color-shadow: var(--nw-primary);
  --color-shadow-rgb: 37, 34, 32;
  --color-primary: var(--nw-accent);
  --color-primary-rgb: 84, 102, 89;
  --color-primary-hover: var(--nw-accent-dark);
  --color-primary-hover-rgb: 61, 78, 66;
  --color-primary-button-text: var(--nw-white);
  --color-primary-button-background: var(--nw-accent);
  --color-primary-button-border: var(--nw-accent);
  --color-primary-button-hover-text: var(--nw-white);
  --color-primary-button-hover-background: var(--nw-accent-dark);
  --color-primary-button-hover-border: var(--nw-accent-dark);
  --color-secondary-button-text: var(--nw-primary);
  --color-secondary-button-background: transparent;
  --color-secondary-button-border: var(--nw-primary);
  --color-input-background: var(--nw-white);
  --color-input-text: var(--nw-primary);
  --color-input-text-rgb: 37, 34, 32;
  --color-input-border: var(--nw-divider);
  --font-h1--color: var(--nw-primary);
  --font-h2--color: var(--nw-primary);
  --font-h3--color: var(--nw-primary);
  --font-h4--color: var(--nw-primary);
  --font-h5--color: var(--nw-primary);
  --font-h6--color: var(--nw-primary);
}
.nw-pdp-section a {
  text-decoration: none;
}

.nw-pdp-section img {
  display: block;
  max-width: 100%;
}

/* Also force colors on schema-generated outer wrapper
   so the theme never injects its color-scheme class above us. */
.nw-pdp-section-wrapper,
[class*="nw-pdp-section-wrapper"] {
  --color: var(--nw-primary);
  --color-foreground: var(--nw-primary);
  --color-foreground-rgb: 37, 34, 32;
  --color-foreground-heading: var(--nw-primary);
  --color-background: var(--nw-white);
  --color-background-rgb: 252, 252, 252;
  --font-h1--color: var(--nw-primary);
  --font-h2--color: var(--nw-primary);
  --font-h3--color: var(--nw-primary);
  --font-h4--color: var(--nw-primary);
  --font-h5--color: var(--nw-primary);
  --font-h6--color: var(--nw-primary);
  color: var(--nw-primary) !important;
  background: var(--nw-white) !important;
}


/* ──────────────────────────────────────────────────── */
/*  1. PRODUCT MAIN SECTION                            */
/* ──────────────────────────────────────────────────── */

.nw-pdp-main {
  
}
.nw-pdp-main__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: start;
  padding-top:25px;
}

/* Gallery Column */
.nw-pdp-gallery {
  min-width: 0;           /* prevent grid blowout */
  overflow: hidden;       /* contain thumbnails within column */
  width:50%;
  position: sticky;
    top: 88px;
}
.nw-pdp-gallery__main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 730 / 500;
}
.nw-pdp-gallery__main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,0.40));
  pointer-events: none;
  border-radius: 24px;
}
.nw-pdp-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
/* Gallery Nav arrows (bottom of main image) */
.nw-pdp-gallery__nav {
    position: absolute;
    bottom: 40%;
    left: 0;
    right: 0;
    display: flex;
    gap: 8px;
    z-index: 6;
    justify-content: space-between;
}
.nw-pdp-gallery__nav-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(252,252,252,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
}
.nw-pdp-gallery__nav-btn:hover {
  background: var(--nw-white);
}
.nw-pdp-gallery__nav-btn svg {
  width: 24px;
  height: 24px;
  color: var(--nw-primary);
}
/* Zoom icon */
.nw-pdp-gallery__zoom {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(252,252,252,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  border: none;
  transition: background 0.2s;
}
.nw-pdp-gallery__zoom svg {
  width: 22px;
  height: 22px;
  color: var(--nw-primary);
}

/* Thumbnails */
.nw-pdp-gallery__thumbs {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.nw-pdp-gallery__thumbs::-webkit-scrollbar { display: none; }

.nw-pdp-gallery__thumb {
  flex-shrink: 0;
  width: 168px;
  height: 147px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 4px 4px 16px rgba(0,0,0,0.12);
  border: 2px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
  background: #f0ece8;
  position: relative;
}
.nw-pdp-gallery__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.50);
  transition: opacity 0.25s;
  pointer-events: none;
}
.nw-pdp-gallery__thumb.is-active {
  border-color: var(--nw-accent);
  box-shadow: 4px 4px 16px rgba(84,102,89,0.30);
}
.nw-pdp-gallery__thumb.is-active::after { opacity: 0; }
.nw-pdp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbnail scroll wrapper */
.nw-pdp-gallery__thumbs-wrap {
  position: relative;
}
.nw-pdp-gallery__thumbs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(252,252,252,0.92);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  display: none;          /* hidden by default, shown via JS */
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, opacity 0.2s;
}
.nw-pdp-gallery__thumbs-arrow.is-visible { display: flex; }
.nw-pdp-gallery__thumbs-arrow:hover { background: var(--nw-white); }
.nw-pdp-gallery__thumbs-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--nw-primary);
}
.nw-pdp-gallery__thumbs-arrow--left  { left: -8px; }
.nw-pdp-gallery__thumbs-arrow--right { right: -8px; }

/* Video play overlay on thumbnail */
.nw-pdp-gallery__thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.nw-pdp-gallery__thumb-play svg {
  width: 32px;
  height: 32px;
  fill: rgba(252,252,252,0.92);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}

/* Play overlay on main gallery image (shown for video media) */
.nw-pdp-gallery__play-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nw-pdp-gallery__play-overlay svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
  transition: transform 0.2s ease;
}
.nw-pdp-gallery__play-overlay:hover svg {
  transform: scale(1.08);
}
/* Video player in main gallery */
.nw-pdp-gallery__main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.nw-pdp-gallery__main-video.is-active {
  display: block;
}
.nw-pdp-gallery__main-img.is-hidden {
  display: none;
}


.nw-pdp-gallery__play-overlay,
.nw-pdp-mobile-play-overlay,
.nw-pdp-gallery__thumb-play,
.nw-pdp-mobile-thumb-play {
  display: none !important;
  pointer-events: none !important;
}

/* #nw-mobile-main-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
} */



/* #nw-mobile-main-video {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
}

#nw-mobile-main-img.is-video-active {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .nw-pdp-mobile-image img,
  #nw-mobile-main-img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nw-pdp-mobile-play-overlay {
    display: none !important;
  }
} */



.nw-pdp-mobile-video {
  display: none;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.nw-pdp-mobile-video.is-active {
  display: block;
}

.nw-pdp-mobile-image.is-video-active #nw-mobile-main-img {
  display: none;
}




/* Details Column */
.nw-pdp-details {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width:50%;
}

/* -- Meta block (breadcrumb, title, price) */
.nw-pdp-meta {
  display: flex;
  flex-direction: column;
  /* gap: 24px; */
}
.nw-pdp-meta__top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nw-pdp-meta__ids {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nw-pdp-breadcrumb {
  font-family: var(--font-heading--family);
  font-size: 16px;
  line-height: 28px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nw-pdp-breadcrumb a {
  color: #546659;
}
.nw-pdp-breadcrumb a:hover { text-decoration: underline; }

.nw-pdp-title {
    font-family: var(--font-h1--family);
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    color: #252220;
    margin: 0;
}

/* Price */
.nw-pdp-price-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 20px;
}
.nw-pdp-price-current {
  font-family: var(--font-heading--family);
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  color: #546659;
}
.nw-pdp-price-compare {
  font-family: var(--font-heading--family);
  font-size: 20px;
  line-height: 1.3;
  text-decoration: line-through;
  color: #2a3326;
  opacity: 0.6;
}
.nw-pdp-price-save {
  font-family: var(--font-heading--family);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: red;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Trust / badges */
.nw-pdp-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 693px;
  margin-bottom: 0px !important;
}
.nw-pdp-shipping-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nw-pdp-shipping-badge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--nw-accent);
}
.nw-pdp-shipping-badge span {
  font-family: var(--font-heading--family);
  font-size: 22px;
  font-weight: 700;
  color: var(--nw-accent);
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.02em;
}
.nw-pdp-hsa-line {
  font-size: 16px;
  line-height: 20px;
  color: var(--nw-primary);
  margin-top:0px;
}
.nw-pdp-hsa-line strong {
  font-family: var(--nw-font-head);
  font-weight: 700;
  font-size: 20px;
}
.nw-pdp-description {
  font-size: 18px;
  line-height: 28px;
  color: var(--nw-primary);
  max-width: 693px;
  margin-top: 0 !important;
}
.nw-pdp-description > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.nw-pdp-description > p:first-child:empty,
.nw-pdp-description > p:first-child:has(br) {
  display: none !important;
}
.nw-pdp-description img{
  width:100px;margin-bottom:10px;
}
.nw-pdp-description h2{
  font-size: 22px;
    font-weight: bold;
    font-family: var(--nw-font-head)
}

/* Dealer badge */
.nw-pdp-dealer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nw-pdp-dealer-logo {
  height: 78px;
  width: auto;
  max-width: 134px;
  object-fit: contain;
}
.nw-pdp-dealer-text {
  font-family: var(--nw-font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--nw-primary);
}

/* Features checklist */
.nw-pdp-features {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding:0;
}
.nw-pdp-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nw-pdp-feature p {
  margin:0;
}
.nw-pdp-feature svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.nw-pdp-feature span {
  font-family: var(--nw-font-body);
  font-size: 16px;
  line-height: 20px;
  color: var(--nw-primary);
}

/* Financing bar */
.nw-pdp-financing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 18px;
  line-height: 28px;
  color: var(--nw-primary);
}
.nw-pdp-financing img {
  height: 28px;
  width: auto;
  vertical-align: middle;
}
.nw-pdp-financing a {
  color: var(--nw-accent);
  text-decoration: underline;
}

/* Options / Swatches */
.nw-pdp-options {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 719px;
}
.nw-pdp-option {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nw-pdp-option__label {
  font-family: var(--nw-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--nw-primary);
  margin: 0;
}
.nw-pdp-option__selected-val {
 font-size:14px;
  font-weight: 400;
  font-family: var(--nw-font-body);
  color: #333;
}

.nw-pdp-option__sublabel {
  font-size: 16px;
  line-height: 28px;
  color: var(--nw-primary);
  margin: 0;
  font-family: var(--nw-font-body);
}
/* ── Standard Variant Swatches Row ── */
.nw-pdp-swatches {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  margin-bottom: 12px;
}

/* ── Standard Variant Swatch Card ── */
.nw-pdp-swatch {
  position: relative;
  width: 164px;
  min-width: 164px;
  height: 172px;
  min-height: 172px;
  max-height: 172px;
  display: grid;
  grid-template-rows: 92px auto;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(49, 72, 63, 0.16);
  border-radius: 8px;
  background: #fff;
  color: #111;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.nw-pdp-swatch img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  border-radius: 7px 7px 0 0;
  background: #f6f5f1;
  margin: 0;
  mix-blend-mode: multiply;
}
.nw-pdp-swatch:hover {
  transform: translateY(-1px);
  border-color: rgba(49, 72, 63, 0.36);
  box-shadow: 0 10px 20px rgba(49, 72, 63, 0.1);
}
.nw-pdp-swatch.is-selected {
  background: #f4f7ef;
  border-color: var(--nw-accent);
  box-shadow: 0 0 0 1px var(--nw-accent), 0 10px 22px rgba(49, 72, 63, 0.12);
}
/* If it has an image inside, render the title using ::after */
.nw-pdp-swatch:has(img)::after {
  content: attr(data-option-val);
  display: block;
  padding: 0 8px 8px;
  color: var(--nw-primary);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Text fallback swatch / None card */
.nw-pdp-swatch:not(:has(img)) {
  grid-template-rows: 1fr auto;
  justify-items: center;
  padding: 18px 12px 14px;
  background: #fff;
}
.nw-pdp-swatch:not(:has(img)) .nw-pdp-swatch__text {
  font-family: var(--nw-font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--nw-primary);
  display: block;
  line-height: 1.25;
  padding: 0;
}

/* None card icon */
.nw-pdp-swatch[data-option-val="None"]::before,
.nw-pdp-swatch[data-option-val="none"]::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  border: 2px solid #777;
  border-radius: 999px;
  background: linear-gradient(45deg, transparent 45%, #777 46%, #777 54%, transparent 55%);
  margin-bottom: 12px;
  transition: border-color 180ms ease, background 180ms ease;
}
.nw-pdp-swatch[data-option-val="None"].is-selected::before,
.nw-pdp-swatch[data-option-val="none"].is-selected::before {
  border-color: var(--nw-accent);
  background: linear-gradient(45deg, transparent 45%, var(--nw-accent) 46%, var(--nw-accent) 54%, transparent 55%);
}

.nw-pdp-swatch.is-selected:has(img)::before {
  content: "Added";
  position: absolute;
  top: 8px;
  left: 8px;
  right: auto;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--nw-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

/* Add to Cart row */
.nw-pdp-atc-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
}
.nw-pdp-atc-btn {
  background: #f2c94c;
  color: #263b34;
  font-family: var(--nw-font-head);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 50px;
  padding: 14px 30px;
  height: 52px;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 4px 14px rgba(169, 126, 20, 0.35);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}
.nw-pdp-atc-btn:hover {
  background: #dca725;
  color: #263b34;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(169, 126, 20, 0.4);
}
.nw-pdp-atc-btn:active {
  transform: translateY(0) scale(0.98);
}
.nw-pdp-atc-btn:disabled {
  background: #ccc;
  color: #666;
  box-shadow: none;
  cursor: not-allowed;
}

.nw-pdp-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  width: 100%;
  border: 1px solid #d5d5d5;
  border-radius: 999px;
  background: #fff;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 700;
  gap: 0;
}
.nw-pdp-qty__btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nw-primary);
  transition: opacity 0.2s;
}
.nw-pdp-qty__btn:hover { opacity: 0.6; }
.nw-pdp-qty__btn svg { width: 16px; height: 16px; }
.nw-pdp-qty__val {
  font-family: var(--nw-font-body);
  font-size: 16px;
  color: var(--nw-primary);
  min-width: 20px;
  text-align: center;
  line-height: 1;
}
.nw-pdp-wishlist {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: var(--nw-primary);
}
.nw-pdp-wishlist svg {
  width: 36px;
  height: 36px;
  transition: color 0.2s;
}
.nw-pdp-wishlist:hover svg { color: var(--nw-accent); }
.nw-pdp-wishlist-text {
  font-family: var(--nw-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--nw-primary);
  white-space: nowrap;
}

/* ──────────────────────────────────────────────────── */
/*  2. PRODUCT ACCORDION SECTION                       */
/* ──────────────────────────────────────────────────── */

.nw-pdp-accordion-section {
  padding: 80px var(--nw-page-px) 150px;
  padding-bottom: 30px;
}
.nw-pdp-accordion-inner {
  max-width: 1444px;
  margin: 0 auto;
}
.nw-pdp-accordion {
  display: flex;
  flex-direction: column;
}
.nw-pdp-accordion__item {
  border-bottom: 1px solid var(--nw-divider);
}
.nw-pdp-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 20px;
  text-align: left;
}
.nw-pdp-accordion__name {
  font-family: var(--nw-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--nw-primary);
  line-height: 1.25;
}
@media (min-width: 768px) {
  .nw-pdp-accordion__name {
    font-size: 24px;
  }
}
.nw-pdp-accordion__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 20px;
  background: var(--nw-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}
.nw-pdp-accordion__item.is-open .nw-pdp-accordion__icon {
  transform: rotate(45deg);
}
.nw-pdp-accordion__icon svg {
  width: 14px;
  height: 14px;
  color: var(--nw-white);
}
.nw-pdp-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.nw-pdp-accordion__item.is-open .nw-pdp-accordion__content {
  max-height: 3000px;
}
.nw-pdp-accordion__body {
  padding: 8px 8px 32px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--nw-primary);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease 0.06s, transform 0.3s ease 0.06s;
}
.nw-pdp-accordion__body .metafield-rich_text_field h3 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 24px;
  font-family: var(--nw-font-head);
  font-weight: 700;
}
.nw-pdp-accordion__body p,
.nw-pdp-accordion__body .metafield-rich_text_field p {
  font-size: 16px;
  padding: 0;
  margin: 0 0 18px 0;
  line-height: 1.65;
}
.nw-pdp-accordion__body p:last-child,
.nw-pdp-accordion__body .metafield-rich_text_field p:last-child {
  margin-bottom: 0;
}
.nw-pdp-accordion__body ul,
.nw-pdp-accordion__body ol {
  margin-top: 0;
  margin-bottom: 18px;
  padding-left: 24px;
}
.nw-pdp-accordion__body li {
  margin-bottom: 8px;
  line-height: 1.65;
}
.nw-pdp-accordion__body li:last-child {
  margin-bottom: 0;
}
.nw-pdp-accordion__item.is-open .nw-pdp-accordion__body {
  opacity: 1;
  transform: translateY(0);
}
/* Resources & Guides links */
.nw-pdp-accordion__body a,
.nw-pdp-accordion__body .metafield-rich_text_field a {
  color: #546659 !important;
  text-decoration: underline !important;
  font-weight: 500;
}

.nw-pdp-accordion__body a:hover,
.nw-pdp-accordion__body .metafield-rich_text_field a:hover {
  color: #3d4e42 !important;
}
/* Accordion Split layout for Metafield Images */
.nw-pdp-accordion__split {
  display: flex;
  flex-direction: column; /* Mobile: text first, images under */
  gap: 20px;
  margin-right: 0px;
  margin-bottom: 30px;
}
.nw-pdp-accordion__split-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease 0.06s, transform 0.3s ease 0.06s;
}
.nw-pdp-accordion__split-images.nw-images-multiple {
  grid-template-columns: 1fr 1fr;
}
.nw-pdp-accordion__item.is-open .nw-pdp-accordion__split-images {
  opacity: 1;
  transform: translateY(0);
}
.nw-pdp-accordion__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: zoom-in;
}
.nw-pdp-accordion__split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nw-pdp-accordion__zoom-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.nw-pdp-accordion__zoom-icon svg {
  width: 18px;
  height: 18px;
}
.nw-pdp-accordion__image-wrapper:hover .nw-pdp-accordion__zoom-icon {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .nw-pdp-accordion__split {
    flex-direction: row; /* Desktop: text left, images right */
    align-items: flex-start;
    gap: 30px;
    margin-right: 70px;
    margin-bottom: 40px;
  }
  .nw-pdp-accordion__split-images,
  .nw-pdp-accordion__split-text {
    flex: 1;
    min-width: 0;
  }
}

/* ──────────────────────────────────────────────────── */
/*  3. FAQ SECTION                                     */
/* ──────────────────────────────────────────────────── */



/* ──────────────────────────────────────────────────── */
/*  4. STORIES FROM THE STEAM (Testimonials)           */
/* ──────────────────────────────────────────────────── */

.nw-pdp-stories-section {
  padding: 150px var(--nw-page-px);
}
.nw-pdp-stories-inner {
  max-width: var(--nw-inner-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.nw-pdp-stories__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}
.nw-pdp-stories__htext {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}
.nw-pdp-stories__title {
  font-family: var(--nw-font-head);
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: var(--nw-primary);
}
.nw-pdp-stories__subtitle {
  font-family: var(--nw-font-body);
  font-size: 18px;
  line-height: 28px;
  color: var(--nw-primary);
}
.nw-pdp-stories__nav {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
  align-items: center;
}
.nw-pdp-stories__nav-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  padding: 0;
}
.nw-pdp-stories__nav-btn:hover { opacity: 0.7; }
.nw-pdp-stories__nav-btn svg { width: 64px; height: 64px; }

.nw-pdp-stories__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  width: 100%;
}

/* Review Card */
.nw-pdp-review-card {
  background: var(--nw-cream);
  border-radius: 15px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 380px;
}
.nw-pdp-review-card__quote-icon svg {
  width: 66px;
  height: 52px;
  color: var(--nw-accent);
}
.nw-pdp-review-card__text {
  font-family: var(--nw-font-body);
  font-size: 18px;
  line-height: 28px;
  color: var(--nw-primary);
  flex: 1;
}
.nw-pdp-review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.nw-pdp-review-card__author {
  display: flex;
  align-items: center;
  gap: 9px;
}
.nw-pdp-review-card__avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e0d9d2;
}
.nw-pdp-review-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nw-pdp-review-card__name {
  font-family: var(--nw-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--nw-accent);
  line-height: normal;
}
.nw-pdp-review-card__role {
  font-family: var(--nw-font-head);
  font-size: 12px;
  color: var(--nw-primary);
  line-height: normal;
}
.nw-pdp-review-card__stars {
  display: flex;
  gap: 2px;
}
.nw-pdp-review-card__stars svg {
  width: 24px;
  height: 24px;
  color: #F5A623;
}

/* ──────────────────────────────────────────────────── */
/*  5. STORIES FROM THE HEAT (Review Form)             */
/* ──────────────────────────────────────────────────── */

.nw-pdp-review-form-section {
  padding: 0 var(--nw-page-px) 150px;
}
.nw-pdp-review-form-inner {
  max-width: var(--nw-inner-max);
  margin: 0 auto;
}
.nw-pdp-review-form-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--nw-accent);
  min-height: 735px;
  display: flex;
  flex-direction: column;
}
.nw-pdp-review-form-box__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nw-pdp-review-form-box__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nw-pdp-review-form-box__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.70);
  z-index: 1;
}
.nw-pdp-review-form-box__content {
  position: relative;
  z-index: 2;
  padding: 101px 100px 100px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  width: 100%;
  flex: 1;
}
.nw-pdp-review-form-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
}
.nw-pdp-review-form-box__htext {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--nw-white);
  max-width: 715px;
}
.nw-pdp-review-form-box__title {
  font-family: var(--nw-font-head);
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
}
.nw-pdp-review-form-box__subtitle {
  font-family: var(--nw-font-body);
  font-size: 18px;
  line-height: 28px;
}
.nw-pdp-review-form-box__rating {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nw-pdp-star-rating-display {
  display: flex;
  gap: 4px;
}
.nw-pdp-star-rating-display svg {
  width: 44px;
  height: 44px;
  color: rgba(255,255,255,0.30);
  cursor: pointer;
  transition: color 0.15s;
}
.nw-pdp-star-rating-display svg.is-active,
.nw-pdp-star-rating-display svg.is-hover {
  color: #F5A623;
}
.nw-pdp-rating-label {
  font-family: var(--nw-font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--nw-white);
  white-space: nowrap;
}

/* Review Form Fields */
.nw-pdp-review-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.nw-pdp-review-textarea {
  width: 100%;
  height: 203px;
  background: var(--nw-cream);
  border-radius: 8px;
  border: none;
  padding: 30px;
  font-family: var(--nw-font-head);
  font-size: 24px;
  font-weight: 500;
  color: var(--nw-primary);
  resize: none;
  outline: none;
  transition: box-shadow 0.2s;
}
.nw-pdp-review-textarea::placeholder { opacity: 0.70; }
.nw-pdp-review-textarea:focus { box-shadow: 0 0 0 2px var(--nw-accent); }

.nw-pdp-review-form__row {
  display: flex;
  gap: 30px;
}
.nw-pdp-review-input {
  flex: 1;
  height: 81px;
  background: var(--nw-cream);
  border-radius: 8px;
  border: none;
  padding: 0 30px;
  font-family: var(--nw-font-head);
  font-size: 24px;
  font-weight: 500;
  color: var(--nw-primary);
  outline: none;
  transition: box-shadow 0.2s;
}
.nw-pdp-review-input::placeholder { opacity: 0.70; }
.nw-pdp-review-input:focus { box-shadow: 0 0 0 2px var(--nw-accent); }

.nw-pdp-review-submit {
  background: var(--nw-accent);
  color: var(--nw-white);
  font-family: var(--nw-font-head);
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 14px 44px;
  height: 56px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  width: fit-content;
}
.nw-pdp-review-submit:hover { background: var(--nw-accent-dark); }

/* ──────────────────────────────────────────────────── */
/*  6. RELATED / RECOMMENDED PRODUCTS                  */
/* ──────────────────────────────────────────────────── */

.nw-pdp-related-section {
  padding: 150px var(--nw-page-px);
}
.nw-pdp-related-inner {
  max-width: var(--nw-inner-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.nw-pdp-related__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.nw-pdp-related__title {
  font-family: var(--nw-font-head);
  font-size: 52px;
  font-weight: 700;
  line-height: 50px;
  color: var(--nw-primary);
}
.nw-pdp-related__nav {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
}
.nw-pdp-related__nav-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  padding: 0;
}
.nw-pdp-related__nav-btn:hover { opacity: 0.7; }
.nw-pdp-related__nav-btn svg { width: 64px; height: 64px; }

.nw-pdp-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

/* Responsive: 2 columns on tablet */
@media (max-width: 1024px) {
  .nw-pdp-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 column on mobile */
@media (max-width: 768px) {
  .nw-pdp-related__grid {
    grid-template-columns: 1fr;
  }
  .nw-pdp-related__title {
    font-size: 36px;
    line-height: 40px;
  }
  .nw-pdp-product-card__info {
    padding: 20px 15px 15px;
  }
}

/* Product Card */
.nw-pdp-product-card {
  border: 2px solid var(--nw-cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.nw-pdp-product-card:hover {
  border-color: var(--nw-accent);
  box-shadow: 0 4px 24px rgba(84,102,89,0.14);
}
.nw-pdp-product-card__img-wrap {
  height: 350px;
  overflow: hidden;
  background: var(--nw-white);
  position: relative;
}
.nw-pdp-product-card__img-wrap img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.nw-pdp-product-card:hover .nw-pdp-product-card__img-wrap img {
  transform: scale(1.04);
}
.nw-pdp-product-card__info {
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.nw-pdp-product-card__title {
  font-family: var(--nw-font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--nw-primary);
  line-height: normal;
  text-align: center;
}
.nw-pdp-product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
  text-align: center;
  font-family: var(--font-paragraph--family);
  font-weight: 700;
}
.nw-pdp-product-card__price-compare {
  font-size: 18px;
  line-height: 28px;
  text-decoration: line-through;
  color: var(--nw-accent);
  font-family: var(--font-paragraph--family);
  font-weight: 700;
}
.nw-pdp-product-card__price-current {
  font-size: 20px;
  line-height: 28px;
  color: var(--nw-primary);
  font-family: var(--font-paragraph--family);
  font-weight: 700;
}

/* Product Card Buttons */
.nw-pdp-product-card button,
.nw-pdp-product-card a[class*="button"],
.nw-pdp-product-card .quick-add__button {
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  white-space: normal;
  padding: 12px 16px;
  font-size: 14px;
  margin-top: auto;
}

/* ──────────────────────────────────────────────────── */
/*  7. CUSTOM QUOTE CTA                                */
/* ──────────────────────────────────────────────────── */

.nw-pdp-quote-section {
  padding: 0 var(--nw-page-px) 150px;
}
.nw-pdp-quote-inner {
  max-width: var(--nw-inner-max);
  margin: 0 auto;
}
.nw-pdp-quote-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--nw-accent);
  min-height: 413px;
  display: flex;
  align-items: center;
}
.nw-pdp-quote-box__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nw-pdp-quote-box__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nw-pdp-quote-box__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.66);
  z-index: 1;
}
.nw-pdp-quote-box__content {
  position: relative;
  z-index: 2;
  padding: 103px 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 960px;
}
.nw-pdp-quote-box__title {
  font-family: var(--font-h2--family);
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    color: #fff;
    margin-bottom: 0;
}
.nw-pdp-quote-box__text {
  font-family: var(--nw-font-body);
  font-size: 18px;
  line-height: 28px;
  color: var(--nw-white);
}

/* ──────────────────────────────────────────────────── */
/*  8. CONTACT CTA BANNER                              */
/* ──────────────────────────────────────────────────── */

.nw-pdp-cta-section {
  padding: 0;
}
.nw-pdp-cta-box {
  position: relative;
  min-height: 413px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.nw-pdp-cta-box__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nw-pdp-cta-box__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nw-pdp-cta-box__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.66);
  z-index: 1;
}
.nw-pdp-cta-box__content {
  position: relative;
  z-index: 2;
  padding: 92px 200px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
}
.nw-pdp-cta-box__title {
  font-family: var(--nw-font-head);
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: var(--nw-white);
}
.nw-pdp-cta-box__text {
  font-family: var(--nw-font-body);
  font-size: 18px;
  line-height: 28px;
  color: var(--nw-white);
}

/* ── SHARED BUTTON PILL ─────────────────────────── */
.nw-pdp-btn-pill {
  background: #546659;
  color:#fff;
  font-family: roboto;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 14px 44px;
  height: 56px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.nw-pdp-btn-pill:hover { background: var(--nw-accent-dark); }
.nw-pdp-btn-pill:active { transform: scale(0.98); }

/* ── SCROLL / ENTRANCE ANIMATIONS ──────────────────
   Progressive-enhancement pattern:
   Content is VISIBLE by default (opacity: 1).
   When JS boots it adds .nw-anim-ready to the body,
   THEN we hide elements and let IntersectionObserver
   reveal them.  If JS fails → everything stays readable.
   ──────────────────────────────────────────────────── */

/* DEFAULT: fully visible — no animation until JS is ready */
.nw-fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* JS has booted → hide elements that haven't been observed yet */
body.nw-anim-ready .nw-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

/* IntersectionObserver has triggered → reveal */
body.nw-anim-ready .nw-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
body.nw-anim-ready .nw-fade-up--d1 { transition-delay: 0.10s; }
body.nw-anim-ready .nw-fade-up--d2 { transition-delay: 0.20s; }
body.nw-anim-ready .nw-fade-up--d3 { transition-delay: 0.30s; }
body.nw-anim-ready .nw-fade-up--d4 { transition-delay: 0.40s; }
body.nw-anim-ready .nw-fade-up--d5 { transition-delay: 0.50s; }

/* In the Shopify theme editor, skip animations entirely so
   content is always visible while the merchant is editing. */
.shopify-design-mode .nw-fade-up,
.shopify-design-mode body.nw-anim-ready .nw-fade-up {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ── ZOOM LIGHTBOX ──────────────────────────────── */
.nw-gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nw-gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.nw-gallery-lightbox img {
  /* width:auto ensures the img box equals the actual rendered image size.
     Without this, width:100% from base.css makes the box 90vw wide, so
     the dark letterbox area beside a portrait image targets <img> not <lb>,
     causing e.target===lb to never fire when clicking the backdrop. */
  width: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.nw-gallery-lightbox.is-loading img {
  opacity: 0.5;
  pointer-events: none;
}
.nw-gallery-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}

/* ── Lightbox navigation arrows ── */
.nw-gallery-lightbox__prev,
.nw-gallery-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  user-select: none;
  z-index: 10001;
}

.nw-gallery-lightbox__prev {
  left: 30px;
}

.nw-gallery-lightbox__next {
  right: 30px;
}

.nw-gallery-lightbox__prev:hover,
.nw-gallery-lightbox__next:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.1);
}

/* Loading Spinner */
.nw-gallery-lightbox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: white;
  border-radius: 50%;
  animation: nw-spin 0.8s linear infinite;
  display: none;
  z-index: 10001;
}

@keyframes nw-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 768px) {
  .nw-gallery-lightbox__prev,
  .nw-gallery-lightbox__next {
    font-size: 36px;
    width: 50px;
    height: 50px;
     z-index: 10002;
  }
  
  .nw-gallery-lightbox__prev {
    left: 15px;
  }
  
  .nw-gallery-lightbox__next {
    right: 15px;
  }
  .nw-pdp-feature span{
    font-size: 14px;
    line-height: 18px;
  }
  .nw-pdp-shipping-badge span{
    font-size: 18px;
  }
  .nw-pdp-meta{
    gap:10px;
  }
  .nw-pdp-accordion__name{
    font-size: 20px;
  }
  .metafield-rich_text_field p, li  {
    font-size:14px;
  }
  .metafield-rich_text_field h3, h2{
    font-size:16px;
  }
  .nw-pdp-accordion-section{
    padding-bottom: 50px;
  }
}

/* ── VIDEO LIGHTBOX (fullscreen popup) ──────────── */
.nw-video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nw-video-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.nw-video-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  z-index: 10;
}

/* ── Video lightbox navigation arrows ── */
.nw-video-lightbox__prev,
.nw-video-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  user-select: none;
  z-index: 10001;
}

.nw-video-lightbox__prev {
  left: 30px;
}

.nw-video-lightbox__next {
  right: 30px;
}

.nw-video-lightbox__prev:hover,
.nw-video-lightbox__next:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .nw-video-lightbox__prev,
  .nw-video-lightbox__next {
    font-size: 36px;
    width: 50px;
    height: 50px;
    z-index: 10002;
  }
  
  .nw-video-lightbox__prev {
    left: 15px;
  }
  
  .nw-video-lightbox__next {
    right: 15px;
  }
}
.nw-video-lightbox__holder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nw-video-lightbox__holder video {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  background: #000;
}
/* ══════════════════════════════════════════════════════════════════════ */
/*  MOBILE RESPONSIVE STYLES - NW Product Page
    Simple vertical stack layout matching the provided reference image
    ═══════════════════════════════════════════════════════════════════════ */

/* ── Large Desktop - 1440px ── */
@media (max-width: 1440px) {
  :root { --nw-page-px: 60px; }
    .nw-pdp-main__inner { padding: 50px 50px 0; }
}

/* ── Desktop - 1200px ── */ 
@media (max-width: 1200px) {
  :root { --nw-page-px: 40px; }
    .nw-pdp-main__inner { padding: 50px 30px 0; }
}

/* Mobile Product Image - Hidden on desktop */
.nw-pdp-mobile-image {
  display: none;
}

.nw-pdp-mobile-image__container {
  position: relative;
  width: 100%;
}

/* Mobile Navigation Arrows */
.nw-pdp-mobile-nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}

.nw-pdp-mobile-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(252,252,252,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
}

.nw-pdp-mobile-nav-btn:hover {
  background: var(--nw-white);
}

.nw-pdp-mobile-nav-btn svg {
  width: 20px;
  height: 20px;
  color: var(--nw-primary);
}

/* Mobile Play Overlay (for videos) */
.nw-pdp-mobile-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nw-pdp-mobile-play-overlay svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.2s ease;
}

.nw-pdp-mobile-play-overlay:hover svg {
  transform: scale(1.08);
}

/* Mobile Thumbnail Gallery */
.nw-pdp-mobile-thumbs-wrap {
  display: none; /* Hidden on desktop */
  margin-top: 16px;
}

.nw-pdp-mobile-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 4px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nw-pdp-mobile-thumbs::-webkit-scrollbar {
  display: none;
}

.nw-pdp-mobile-thumb {
  flex: 0 0 auto;
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  border: 2px solid transparent;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
}

.nw-pdp-mobile-thumb.is-active {
  border-color: var(--nw-primary);
}

.nw-pdp-mobile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.nw-pdp-mobile-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.nw-pdp-mobile-thumb-play svg {
  width: 8px;
  height: 8px;
  fill: white;
  margin-left: 1px;
}

/* ── Tablet/Mobile - 992px (MOBILE LAYOUT STARTS) ── */
@media (max-width: 992px) {
  :root { --nw-page-px: 30px; }
  
  /* Convert from side-by-side to vertical stack */
  .nw-pdp-main__inner {
    display: flex;
    flex-direction: column;
    padding: 30px 20px 0;
    gap: 24px;
    align-items: stretch; /* Full width for all children */
  }
  
  /* Hide original gallery on mobile */
  .nw-pdp-gallery {
    display: none;
  }
  
  /* Show mobile image duplicate */
  .nw-pdp-mobile-image {
    display: block;
    width: 100%;
    margin: 16px 0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
  }
   /* Show mobile thumbnail gallery */
  .nw-pdp-mobile-thumbs-wrap {
    display: block;
  }
  .nw-pdp-mobile-image__container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .nw-pdp-mobile-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: 16px;
    display: block;
  }

  /* Mobile play overlay responsive sizing */
  .nw-pdp-mobile-play-overlay svg {
    width: 56px;
    height: 56px;
  }
  
  /* Mobile navigation styling */
  .nw-pdp-mobile-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 6;
  }
  
  .nw-pdp-mobile-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(252,252,252,0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  
  .nw-pdp-mobile-nav-btn:hover {
    background: var(--nw-white);
  }
  
  .nw-pdp-mobile-nav-btn svg {
    width: 18px;
    height: 18px;
    color: var(--nw-primary);
  }
  
  /* Details becomes full-width */
  .nw-pdp-details {
    width: 100%;
    position: static; /* Remove sticky */
    order: 1; /* Show first (title and breadcrumb) */
    gap: 16px;
  }
  
/* start products order  */


.nw-pdp-description{
    order: 2;
}
.nw-pdp-trust{
 order: 2;
}
.nw-pdp-meta-row,
.nw-pdp-trust-stacked {
  order: 2;
}
.nw-pdp-price-row{
 order: 1;
}
.nw-pdp-reviews-badge{
 order: 1;
}

.nw-app-block{
      order: 5;
}

  .nw-product-form {
    order: 0;
  }

  /* end products order */
  
  /* Keep content left-aligned (natural flow) */
  .nw-pdp-title,
  .nw-pdp-price-current,
  .nw-pdp-price-wrap,
  .nw-pdp-breadcrumb,
  .nw-pdp-trust,
  .nw-pdp-description {
    text-align: left;
  }
  
  /* Gallery adjustments */
  .nw-pdp-gallery__main {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }
  
  /* Make thumbnails responsive */
  .nw-pdp-gallery__thumb {
    width: 80px;
    height: 70px;
  }
  
  .nw-pdp-gallery__nav-btn {
    width: 50px;
    height: 50px;
  }
}

/* ── Mobile Large - 768px ── */
@media (max-width: 768px) {
  :root { --nw-page-px: 20px; }
   
  .nw-pdp-main__inner {
    padding: 20px 15px 0;
    gap: 20px;
  }
  
  /* Mobile image adjustments */
  .nw-pdp-mobile-image {
    margin: 12px 0;
    border-radius: 12px;
  }
  
  .nw-pdp-mobile-image img {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }
  
  /* Mobile play overlay smaller sizing */
  .nw-pdp-mobile-play-overlay svg {
    width: 48px;
    height: 48px;
  }

  /* Mobile nav button sizing */
  .nw-pdp-mobile-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .nw-pdp-mobile-nav-btn svg {
    width: 16px;
    height: 16px;
  }
  
  /* Typography scaling for mobile */
  .nw-pdp-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 8px;
  }
  
  .nw-pdp-price-current {
    font-size: 26px;
    line-height: 32px;
  }
  
  .nw-pdp-breadcrumb {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  /* Gallery mobile sizing */
  .nw-pdp-gallery__main {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }
  
  .nw-pdp-gallery__thumb {
    width: 65px;
    height: 57px;
  }
  
  .nw-pdp-gallery__thumbs {
    gap: 12px;
    margin-top: 16px;
  }
  
  .nw-pdp-gallery__nav-btn {
    width: 45px;
    height: 45px;
  }
  
  /* Form becomes full-width */
  .nw-pdp-atc-row {
    grid-template-columns: 120px 1fr;
    gap: 12px;
    width: 100%;
  }
  
  .nw-pdp-qty {
    width: 100%;
    height: 48px;
  }
  
  .nw-pdp-atc-btn {
    width: 100%;
    height: 48px;
    font-size: 16px;
  }
  
  /* Swatches mobile layout */
  .nw-pdp-swatches {
    gap: 12px;
  }
}

/* ── Mobile Medium - 576px ── */
@media (max-width: 576px) {
  .nw-pdp-main__inner {
    padding: 15px 10px 0;
    gap: 16px;
  }
  
  /* Mobile image further adjustments */
  .nw-pdp-mobile-image {
    margin: 10px 0;
    border-radius: 10px;
  }
  
  .nw-pdp-mobile-image img {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
  }
  
  /* Mobile play overlay even smaller sizing for small screens */
  .nw-pdp-mobile-play-overlay svg {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  /* Mobile nav final sizing */
  .nw-pdp-mobile-nav-btn {
    width: 36px;
    height: 36px;
  }
  
  .nw-pdp-mobile-nav {
    bottom: 16px;
  }
  
  .nw-pdp-mobile-nav-btn svg {
    width: 14px;
    height: 14px;
  }
  

  

  
  /* .nw-pdp-gallery__main {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
  } */
  
  .nw-pdp-gallery__thumb {
    width: 55px;
    height: 48px;
  }
  
  .nw-pdp-gallery__thumbs {
    gap: 10px;
  }
  
  .nw-pdp-gallery__nav-btn {
    width: 40px;
    height: 40px;
  }
  

  
  .nw-pdp-atc-btn {
    height: 44px;
    font-size: 15px;
  }
  
  .nw-pdp-qty {
    height: 44px;
  }
}

/* ── Mobile Small - 425px ── */
@media (max-width: 425px) {
  .nw-pdp-main__inner {
    padding: 12px 8px 0;
    gap: 14px;
  }
  
 
  

  
  .nw-pdp-breadcrumb {
    font-size: 12px;
  }
  
  .nw-pdp-gallery__thumb {
    width: 50px;
    height: 44px;
  }
  
  .nw-pdp-gallery__thumbs {
    gap: 8px;
  }
  
  .nw-pdp-gallery__nav-btn {
    width: 36px;
    height: 36px;
  }
  

    
  /* Mobile play overlay small sizing */
  .nw-pdp-mobile-play-overlay svg {
    width: 38px;
    height: 38px;
  }
  
  .nw-pdp-atc-btn {
    height: 42px;
    font-size: 14px;
  }
  
  .nw-pdp-qty {
    height: 42px;
  }
}

/* ── Mobile Extra Small - 375px ── */
@media (max-width: 375px) {
  .nw-pdp-main__inner {
    padding: 10px 6px 0;
    gap: 12px;
  }
  
 
  

  
  .nw-pdp-gallery__thumb {
    width: 45px;
    height: 40px;
  }
  
  .nw-pdp-gallery__nav-btn {
    width: 32px;
    height: 32px;
  }
  

  .nw-pdp-mobile-play-overlay svg {
    width: 36px;
    height: 36px;
  }
  .nw-pdp-atc-btn {
    height: 40px;
    font-size: 13px;
  }
  
  .nw-pdp-qty {
    height: 40px;
  }
}
  .nw-pdp-cta-box__content { padding: 60px 20px; }
}


/* ──────────────────────────────────────────────────── */
/*  VIDEOS / RESOURCES                                 */
/* ──────────────────────────────────────────────────── */
.nw-pdp-videos {
  padding: 100px var(--nw-page-px);
  background: var(--nw-white);
}
.nw-pdp-videos__inner {
  max-width: var(--nw-inner-max);
  margin: 0 auto;
}
.nw-pdp-videos__heading {
  font-family: var(--nw-font-head);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 48px;
}
.nw-pdp-videos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.nw-pdp-video-card {
  border-radius: 12px;
  overflow: hidden;
  background: #f7f7f7;
}
.nw-pdp-video-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.nw-pdp-video-card__media iframe,
.nw-pdp-video-card__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.nw-pdp-video-card__body {
  padding: 16px 20px;
}
.nw-pdp-video-card__title {
  font-family: var(--nw-font-head);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
}
.nw-pdp-video-card__desc {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.nw-pdp-video-card__download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nw-accent);
  text-decoration: none;
  transition: opacity .15s;
}
.nw-pdp-video-card__download:hover { opacity: .7; }
@media (max-width: 768px) {
  .nw-pdp-videos { padding: 60px var(--nw-page-px); }
  .nw-pdp-videos__heading { font-size: 28px; margin-bottom: 28px; }
  .nw-pdp-videos__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Manuals Dropdown ── */
.nw-pdp-manuals {
  margin-top: 40px;
  max-width: 480px;
}
.nw-pdp-manuals__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: var(--nw-font-head);
  font-size: 18px;
  font-weight: 600;
  background: var(--nw-white);
  border: 2px solid var(--nw-primary);
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
  color: var(--nw-primary);
}
.nw-pdp-manuals__btn:hover {
  background: var(--nw-warm-light);
}
.nw-pdp-manuals__btn svg {
  width: 20px;
  height: 20px;
  transition: transform .2s;
}
.nw-pdp-manuals__btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.nw-pdp-manuals__dd {
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 20px;
  background: var(--nw-white);
}
.nw-pdp-manuals__dd[hidden] { display: none; }
.nw-pdp-manuals__dd-hint {
  font-size: 13px;
  color: #888;
  margin: 0 0 8px;
}
.nw-pdp-manuals__link {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--nw-accent);
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: opacity .15s;
}
.nw-pdp-manuals__link:last-child { border-bottom: 0; }
.nw-pdp-manuals__link:hover { opacity: .7; }

/* ── Video Modal ── */
.nw-pdp-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.nw-pdp-video-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.nw-pdp-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  cursor: pointer;
}
.nw-pdp-video-modal__box {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}
.nw-pdp-video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: 0;
  cursor: pointer;
  color: #fff;
  transition: background .15s;
}
.nw-pdp-video-modal__close:hover { background: rgba(0,0,0,.8); }
.nw-pdp-video-modal__close svg { width: 20px; height: 20px; }
.nw-pdp-video-modal__holder {
  width: 100%;
  height: 100%;
}
.nw-pdp-video-modal__holder iframe,
.nw-pdp-video-modal__holder video {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .nw-pdp-videos { padding: 60px var(--nw-page-px); }
  .nw-pdp-videos__heading { font-size: 28px; margin-bottom: 28px; }
  .nw-pdp-videos__gallery { grid-template-columns: 1fr; gap: 24px; }
  .nw-pdp-manuals { max-width: 100%; }
  .nw-pdp-video-modal__box { width: 95vw; }
}

/* ════════════════════════════════════════════════════════
   ADD-ON SWATCH GROUPS — image swatches + subtotal
   ════════════════════════════════════════════════════════ */

/* ── Group ── */
.nw-pdp-addon-group {
  margin-bottom: 20px;
}
.nw-pdp-addon-group__label {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 0 0 4px;
}
.nw-pdp-addon-group__req {
  color: #c0392b;
  font-weight: 700;
}
.nw-pdp-addon-group__desc {
  font-size: 14px;
  font-style: italic;
  color: #666;
  margin: 0 0 10px;
}

/* ── Swatches row ── */
.nw-pdp-addon-swatches {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  margin-bottom: 6px;
}

/* ── Individual swatch card ── */
.nw-pdp-addon-swatch {
  position: relative;
  width: 100%;
  height: 172px;
  min-height: 172px;
  max-height: 172px;
  display: grid;
  grid-template-rows: 92px auto;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(49, 72, 63, 0.16);
  border-radius: 8px;
  background: #fff;
  color: #111;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.nw-pdp-addon-swatch img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  border-radius: 7px 7px 0 0;
  background: #f6f5f1;
  margin: 0;
}
.nw-pdp-addon-swatch:hover {
  transform: translateY(-1px);
  border-color: rgba(49, 72, 63, 0.36);
  box-shadow: 0 10px 20px rgba(49, 72, 63, 0.1);
}
.nw-pdp-addon-swatch.is-selected {
  background: #f4f7ef;
  border-color: var(--nw-accent);
  box-shadow: 0 0 0 1px var(--nw-accent), 0 10px 22px rgba(49, 72, 63, 0.12);
}
.nw-pdp-addon-swatch:not(.nw-pdp-addon-swatch--none)::after {
  content: attr(data-addon-title);
  display: block;
  padding: 0 8px 8px;
  color: var(--nw-primary);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* ── "None" swatch ── */
.nw-pdp-addon-swatch--none {
  grid-template-rows: 1fr auto;
  justify-items: center;
  padding: 18px 12px 14px;
  background: #fff;
}
.nw-pdp-addon-swatch--none::after {
  content: "None";
  display: block;
  color: var(--nw-primary);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}
.nw-pdp-addon-swatch__none-icon {
  display: block;
  width: 42px;
  height: 42px;
  border: 2px solid #777;
  border-radius: 999px;
  background: linear-gradient(45deg, transparent 45%, #777 46%, #777 54%, transparent 55%);
  color: transparent;
  transition: border-color 180ms ease, background 180ms ease;
}
.nw-pdp-addon-swatch__none-icon svg {
  display: none;
}
.nw-pdp-addon-swatch--none.is-selected {
  background: #f4f7ef;
  border-color: var(--nw-accent);
}
.nw-pdp-addon-swatch--none.is-selected .nw-pdp-addon-swatch__none-icon {
  border-color: var(--nw-accent);
  background: linear-gradient(45deg, transparent 45%, var(--nw-accent) 46%, var(--nw-accent) 54%, transparent 55%);
}
.nw-pdp-addon-swatch.is-selected:not(.nw-pdp-addon-swatch--none)::before {
  content: "Added";
  position: absolute;
  top: 8px;
  left: 8px;
  right: auto;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--nw-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

/* ── Text fallback swatch ── */
.nw-pdp-addon-swatch__text {
  font-size: 11px;
  font-weight: 700;
  color: var(--nw-primary);
  text-align: center;
  line-height: 1.25;
  padding: 4px;
}

/* ── ATC dot separator ── */
.nw-pdp-atc-sep {
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  vertical-align: middle;
  margin-left: 4px;
}

/* ── Selected label under swatches ── */
.nw-pdp-addon-group__selected {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 4px 0 0;
  min-height: 20px;
}
.nw-pdp-addon-label-line {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}
.nw-pdp-addon-price-highlight {
  color: #3e5249;
  font-weight: 600;
}

/* ── Subtotal summary ── */
.nw-pdp-addon-summary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  display:none;
}
.nw-pdp-addon-summary__line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  gap: 16px;
}
.nw-pdp-addon-summary__line-label {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  flex: 1;
  min-width: 0;
}
.nw-pdp-addon-summary__line-price {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
}
.nw-pdp-addon-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  margin-top: 4px;
}
.nw-pdp-addon-summary__total span:first-child {
  font-size: 18px;
  font-weight: 400;
  color: #333;
}
.nw-pdp-addon-summary__total span:last-child {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

/* ── Responsive swatch sizing ── */
@media (max-width: 480px) {
  .nw-pdp-addon-group__label {
    font-size: 14px;
  }
  .nw-pdp-addon-summary__total span:last-child {
    font-size: 18px;
  }
}

/* ── Discount Badge on Swatch ── */
.nw-pdp-addon-swatch {
  position: relative;
}
.nw-pdp-addon-swatch__badge {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #c0392b;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  padding: 3px 4px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

/* ── Strikethrough / discount price styles (PDP labels + summary) ── */
.nw-pdp-addon-price-original {
  text-decoration: line-through;
  opacity: 0.55;
  font-weight: 400;
  margin-right: 4px;
}
.nw-pdp-addon-discount-badge {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 5px;
  vertical-align: middle;
}

/* ── Linkable Add-Ons ── */
.nw-pdp-addon-swatch-wrap {
  position: relative;
  display: inline-block;
  width: 164px;
  min-width: 164px;
}
.nw-pdp-addon-swatch__info-link {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  z-index: 3 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 30px !important;
  padding: 0 8px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--nw-accent, #546659) !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transform: translateY(-4px) !important;
  pointer-events: none !important;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, opacity 160ms ease, transform 160ms ease !important;
  font-family: inherit !important;
}
.nw-pdp-addon-swatch-wrap:hover .nw-pdp-addon-swatch__info-link,
.nw-pdp-addon-swatch__info-link:focus-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
.nw-pdp-addon-swatch__info-link svg {
  display: block !important;
  width: 15px !important;
  height: 15px !important;
  flex: 0 0 auto !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.nw-pdp-addon-swatch__info-link span {
  display: inline-block !important;
  margin-left: 6px !important;
  white-space: nowrap !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: currentColor !important;
}
.nw-pdp-addon-swatch__info-link:hover,
.nw-pdp-addon-swatch__info-link:focus-visible {
  background: var(--nw-accent, #546659) !important;
  color: #fff !important;
  outline: none !important;
}

/* ── Swatch Price Overlay ── */
.nw-pdp-addon-swatch__image-wrapper {
  position: relative !important;
  width: 100% !important;
  height: 92px !important;
  display: block !important;
  overflow: hidden !important;
  background: #f6f5f1 !important;
}
.nw-pdp-addon-swatch__image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  margin: 0 !important;
}
.nw-pdp-addon-swatch__image-wrapper .nw-pdp-addon-swatch__price {
  position: absolute !important;
  bottom: 8px !important;
  left: 8px !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 24px !important;
  padding: 0 8px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--nw-accent, #546659) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  font-family: inherit !important;
}
.nw-pdp-addon-swatch__price {
  display: inline-block;
  color: var(--nw-accent, #546659);
  font-size: 12px;
  font-weight: 800;
  margin-top: 4px;
}
.nw-pdp-addon-link {
  color: var(--nw-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}
.nw-pdp-addon-link:hover {
  text-decoration: underline;
  color: var(--nw-accent-dark);
}

/* ──────────────────────────────────────────────────── */
/*  TRUST & SUPPORT BLOCKS (matching design.html)      */
/* ──────────────────────────────────────────────────── */

.purchase-confidence {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  margin-top: 30px;
}

.purchase-confidence h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--nw-primary, #252220);
  font-family: var(--nw-font-head, var(--font-heading--family));
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.confidence-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--nw-primary, #252220);
  font-family: var(--nw-font-body, var(--font-body--family));
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.confidence-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.confidence-list li::before {
  content: "✓";
  color: var(--nw-accent, #546659);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.freight-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 0;
  border-radius: 4px;
  background: #f2f2f2;
  color: var(--nw-primary, #252220);
  font-family: var(--nw-font-body, var(--font-body--family));
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  margin-top: 20px;
}

.freight-block svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  stroke: var(--nw-accent, #546659);
  stroke-width: 2;
  fill: none;
}

.freight-block span {
  font-weight: 700;
  color: inherit;
}

.questions-block {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(49, 72, 63, 0.18);
  border-radius: 8px;
  background: #f4f7ef;
  margin-top: 24px;
}

.advisor-avatar {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  display: block;
  object-fit: cover;
  object-position: 50% 38%;
  box-shadow: 0 10px 22px rgba(49, 72, 63, 0.2);
}

.questions-content {
  display: grid;
  gap: 13px;
}

.questions-block h3 {
  margin: 0;
  color: var(--nw-primary, #252220);
  font-family: var(--nw-font-head, var(--font-heading--family));
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.questions-block p {
  margin: 0;
  color: rgba(37,34,32,0.7);
  font-family: var(--nw-font-body, var(--font-body--family));
  font-size: 15px;
  line-height: 1.45;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.contact-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--nw-accent, #546659);
  color: #fff;
  font-family: var(--nw-font-body, var(--font-body--family));
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-actions a:hover {
  background: var(--nw-accent-dark, #3d4e42);
  transform: translateY(-1px);
}

.contact-actions svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ── Price and Metadata upgrades ── */
.nw-pdp-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: baseline;
  margin: 2px 0;
}
.nw-pdp-price-current {
  color: var(--nw-accent) !important;
  font-size: 32px !important;
  font-weight: 800;
  line-height: 1;
}
.nw-pdp-price-compare {
  color: #2a3326;
  font-size: 18px !important;
  text-decoration: line-through;
}
.nw-pdp-price-save {
  color: #ff0000;
  font-size: 15px !important;
  font-weight: 800;
  text-transform: uppercase;
}

.nw-pdp-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-bottom: 2px;
  color: rgba(37,34,32,0.58);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--nw-font-body);
}
.nw-pdp-trust-stacked {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
  margin-bottom: 8px;
}
.nw-pdp-trust-line {
  font-family: var(--nw-font-body);
  font-size: 16px;
  font-weight: 600;
  color: rgba(37,34,32,0.85);
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.nw-pdp-trust-link {
  color: var(--nw-primary);
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.2s;
}
.nw-pdp-trust-link:hover {
  opacity: 0.8;
}
.nw-pdp-flag {
  width: 22px;
  height: 14px;
  border-radius: 1px;
}
.nw-pdp-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nw-primary);
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.nw-pdp-brand-link:hover {
  opacity: 0.8;
}
.nw-pdp-brand-link img {
  width: auto;
  max-width: 118px;
  height: 20px;
  object-fit: contain;
  object-position: left center;
}
.nw-pdp-brand-text {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ── Star Reviews widget styling override ── */
.jdgm-widget .jdgm-star {
  color: #f2b600 !important;
  font-size: 19px !important;
}
.jdgm-widget.jdgm-preview-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
}
.jdgm-prev-badge__text {
  color: var(--nw-primary) !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  font-size: 15px !important;
}

/* Mobile Details Link Override (Shows as a neat icon at the top right) */
@media (max-width: 768px) {
  .nw-pdp-addon-swatch__info-link {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    padding: 0 !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  }
  .nw-pdp-addon-swatch__info-link span {
    display: none !important;
  }
  .nw-pdp-addon-swatch__info-link svg {
    margin: 0 !important;
    width: 13px !important;
    height: 13px !important;
  }
}


/* -- Premium Variant Swatch Image Wrapper & Price Overlay -- */
.nw-pdp-swatch__image-wrapper {
  position: relative;
  width: 100%;
  height: 92px;
  border-radius: 7px 7px 0 0;
  overflow: hidden;
  background: #f6f5f1;
}
.nw-pdp-swatch__image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  margin: 0 !important;
  mix-blend-mode: multiply !important;
}
.nw-pdp-swatch__image-wrapper .nw-pdp-swatch__price {
  position: absolute !important;
  bottom: 8px !important;
  left: 8px !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 24px !important;
  padding: 0 8px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--nw-accent, #546659) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  font-family: inherit !important;
}
.nw-pdp-swatch:not(:has(img)) .nw-pdp-swatch__price {
  display: inline-block;
  color: var(--nw-accent, #546659);
  font-size: 12px;
  font-weight: 800;
  margin-top: 4px;
}

/* ── Spacing Optimization when content is empty ── */
.nw-pdp-reviews-badge:empty,
.nw-pdp-reviews-badge:has(.jdgm--hidden),
.nw-pdp-reviews-badge:has([style*="display: none"]),
.nw-pdp-reviews-badge:has([data-number-of-reviews="0"]),
.jdgm-widget.jdgm-preview-badge.jdgm--hidden,
.jdgm-widget.jdgm-preview-badge[data-number-of-reviews="0"],
.jdgm-widget.jdgm-preview-badge[style*="display: none"] {
  display: none !important;
}

.nw-pdp-meta-row:empty,
.nw-pdp-meta-row:not(:has(span)):not(:has(a)) {
  display: none !important;
}



