/** Shopify CDN: Minification failed

Line 2301: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;
}
/* 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: 16px;
}
.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;
}
.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;
}
.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);
}
.nw-pdp-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.nw-pdp-swatch {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nw-pdp-swatch:hover {
  border: 1px solid #3e5249;
}
.nw-pdp-swatch.is-selected {
  border: 2px solid #3e5249;
}
.nw-pdp-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.nw-pdp-swatch__text {
  font-family: var(--nw-font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--nw-primary);
  text-align: center;
  padding: 4px;
  line-height: 1.2;
}

/* Add to Cart row */
.nw-pdp-atc-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.nw-pdp-atc-btn {
  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;
  width: 305px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.nw-pdp-atc-btn:hover { background: var(--nw-accent-dark); }
.nw-pdp-atc-btn:active { transform: scale(0.98); }
.nw-pdp-atc-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.nw-pdp-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 56px;
  width: 220px;
  border: 1px solid rgba(37,34,32,0.32);
  border-radius: 100px;
  padding: 0 21px;
  background: var(--nw-white);
}
.nw-pdp-qty__btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nw-primary);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nw-pdp-qty__btn:hover { opacity: 0.6; }
.nw-pdp-qty__btn svg { width: 20px; height: 20px; }
.nw-pdp-qty__val {
  font-family: var(--nw-font-body);
  font-size: 20px;
  color: #1d2939;
  min-width: 24px;
  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: 16px 8px 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 20px;
  text-align: left;
}
.nw-pdp-accordion__name {
  font-family: var(--nw-font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--nw-primary);
  line-height: normal;
}
.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: 4px 8px 28px;
  font-size: 16px;
  line-height: 22px;
  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: 18px;
    margin-bottom: 5px;
    margin-top: 8px;
}
.nw-pdp-accordion__body .metafield-rich_text_field p{
  font-size:16px;
  padding:0;
  margin:0;
  margin-bottom:5px;
}
.nw-pdp-accordion__item.is-open .nw-pdp-accordion__body {
  opacity: 1;
  transform: translateY(0);
}
/* 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 {
  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;
  }
  
  /* Form comes last */
  .nw-product-form {
    order: 3;
  }
  
  /* 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 {
    flex-direction: column;
    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;
    flex-wrap: wrap;
  }
  
  .nw-pdp-swatch {
    width: 60px;
    height: 60px;
  }
}

/* ── 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-swatch {
    width: 50px;
    height: 50px;
  }
  
  .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;
  }
  
  .nw-pdp-swatch {
    width: 45px;
    height: 45px;
  }
    
  /* 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-swatch {
    width: 42px;
    height: 42px;
  }
  .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;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

/* ── Individual swatch ── */
.nw-pdp-addon-swatch {
  position: relative;
  width: 65px;
  height: 65px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2px;
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nw-pdp-addon-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.nw-pdp-addon-swatch:hover {
  border: 1px solid #3e5249;
}
.nw-pdp-addon-swatch.is-selected {
  border:2px solid #3e5249;
}

/* ── "None" swatch ── */
.nw-pdp-addon-swatch--none {
  background: #f9f9f9;
}
.nw-pdp-addon-swatch__none-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #bbb;
}
.nw-pdp-addon-swatch__none-icon svg {
  width: 28px;
  height: 28px;
}
.nw-pdp-addon-swatch--none.is-selected .nw-pdp-addon-swatch__none-icon {
  color: #3e5249;
}

/* ── Text fallback swatch ── */
.nw-pdp-addon-swatch__text {
  font-size: 10px;
  color: #555;
  text-align: center;
  line-height: 1.2;
  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-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-swatch {
    width: 56px;
    height: 56px;
  }
  .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;
}

