:root {
  --nt-ink: #17264d;
  --nt-muted: #647282;
  --nt-line: #d9e3e7;
  --nt-soft: #eef7f5;
  --nt-cream: #fbf7f1;
  --nt-green: #00847f;
  --nt-green-dark: #0b4f5a;
  --nt-gold: #c97841;
  --nt-gold-light: #f4e3d4;
  --nt-white: #ffffff;
  --nt-red: #c64f43;
  --nt-shadow: 0 20px 55px rgba(23, 38, 77, 0.12);
  --nt-radius: 8px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--nt-ink);
  background: var(--nt-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -999px; top: 12px; z-index: 100;
  padding: 10px 14px; background: var(--nt-ink); color: var(--nt-white);
}
.skip-link:focus { left: 12px; }

/* ─── HEADER (Blissy-style: logo row → nav row → promo stack) ─── */
.site-header {
  position: relative;
  z-index: 50;
  background: var(--nt-white);
  box-shadow: 0 1px 0 var(--nt-line);
}

/* Row 1: Logo + Tools */
.header-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px) 12px;
  border-bottom: 1px solid var(--nt-line);
}

/* Logo absolutely centered regardless of what's on left/right */
.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--nt-green-dark);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  white-space: nowrap;
}

.footer-brand {
  color: var(--nt-green-dark);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
}

.header-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  justify-self: end;
}

.header-tool-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--nt-muted);
  font-size: 11px;
  font-weight: 700;
  transition: color 120ms;
}
.header-tool-link:hover { color: var(--nt-green); }
.header-tool-link span { line-height: 1; }

/* Row 2: Navigation */
.primary-nav {
  border-bottom: 1px solid var(--nt-line);
}
.primary-nav .menu {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 6px 18px;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}
.primary-nav .menu li a {
  display: block;
  padding: 7px 12px;
  border-radius: 6px;
  color: var(--nt-ink);
  transition: color 120ms, background 120ms;
}
.primary-nav .menu li a:hover { color: var(--nt-green); background: var(--nt-soft); }

/* Bundle & Save — highlighted pill (only applies if .menu-bundle class is present) */
.menu-bundle > a {
  color: var(--nt-green-dark) !important;
  background: var(--nt-gold-light) !important;
  font-weight: 900;
  border: 1.5px solid rgba(183, 122, 57, 0.35);
  border-radius: 6px;
}
.menu-bundle > a:hover { background: #edcf9a !important; }

/* Row 3: Promo stack (Blissy style — 3 layered bars below nav) */
.promo-stack { color: var(--nt-white); text-align: center; }

.promo-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #173d30 0%, #214d3b 60%, #173d30 100%);
}
.promo-main-copy { display: block; }
.promo-main-copy strong { display: block; font-size: clamp(15px, 1.8vw, 20px); line-height: 1.2; }
.promo-main-copy > span { display: block; margin-top: 2px; font-size: 12px; font-weight: 700; opacity: 0.85; }

.promo-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--nt-gold);
  color: var(--nt-white);
  font-size: 8.5px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 4px 12px rgba(183, 122, 57, 0.4);
}

.promo-urgent {
  min-height: 32px;
  padding: 7px 20px;
  background: #8e5a2a;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.promo-urgent strong { color: #ffd580; }

.promo-award {
  min-height: 30px;
  padding: 7px 20px;
  background: #112b1e;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px; padding: 10px;
  border: 1px solid var(--nt-line);
  border-radius: 6px;
  background: var(--nt-white);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--nt-ink); border-radius: 2px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1.5px solid transparent;
  border-radius: var(--nt-radius);
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
  white-space: nowrap;
}
.btn-primary {
  color: var(--nt-white);
  background: var(--nt-green);
  box-shadow: 0 8px 22px rgba(47, 111, 84, 0.28);
}
.btn-primary:hover { background: var(--nt-green-dark); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(47, 111, 84, 0.32); }
.btn-secondary { color: var(--nt-green-dark); background: var(--nt-white); border-color: var(--nt-line); }
.btn-secondary:hover { border-color: var(--nt-green); transform: translateY(-1px); }
.btn-lg { min-height: 54px; padding: 0 30px; font-size: 16px; }
.btn-block { display: flex; width: 100%; margin-top: 20px; }

/* ─── LAYOUT ─── */
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 36px)); margin: 0 auto; }

.hero-grid, .split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.reverse { grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr); }

.section-heading { margin-bottom: 38px; }
.section-heading.centered { text-align: center; }
.section-subtext { color: var(--nt-muted); font-size: 18px; max-width: 580px; margin: 12px auto 0; }

/* ─── HOMEPAGE FULL-WIDTH HERO ─── */
.nt-home-hero {
  --nt-home-hero-bg: none;
  position: relative;
  width: 100%;
  height: var(--blissy-hero-height-home);
  background-color: var(--blissy-bg-light-blue);
  background-image:
    linear-gradient(to right, var(--blissy-color-white) 50%, transparent 78%),
    var(--nt-home-hero-bg);
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nt-home-hero-inner {
  width: min(var(--blissy-container-max), calc(100% - calc(var(--blissy-container-gutter) * 2)));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--blissy-gap-md);
}

/* Each text child constrained so copy stays in the white gradient zone */
.nt-home-hero-badge,
.nt-home-hero-heading,
.nt-home-hero-lede,
.nt-home-hero-actions {
  max-width: var(--blissy-hero-copy-max-w);
}

.nt-home-hero-badge {
  display: inline-block;
  background: var(--blissy-color-ink);
  color: var(--blissy-color-white);
  font-family: var(--blissy-font-body);
  font-size: var(--blissy-text-sm);
  font-weight: var(--blissy-weight-bold);
  letter-spacing: var(--blissy-tracking-display-sm);
  text-transform: uppercase;
  padding: 6px var(--blissy-gap-sm);
  border-radius: var(--blissy-radius-pill);
}

.nt-home-hero-heading {
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-4xl);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-ink);
  line-height: var(--blissy-leading-tight);
  letter-spacing: var(--blissy-tracking-normal);
  margin: 0;
  max-width: var(--blissy-hero-copy-max-w);
}

.nt-home-hero-lede {
  font-family: var(--blissy-font-body);
  font-size: var(--blissy-text-lg);
  font-weight: var(--blissy-weight-regular);
  color: var(--blissy-color-ink);
  line-height: var(--blissy-leading-relaxed);
  margin: 0;
  max-width: var(--blissy-hero-copy-max-w);
}

.nt-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--blissy-gap-sm);
  align-items: center;
}

.nt-home-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blissy-btn-cta-bg);
  color: var(--blissy-btn-cta-color);
  font-family: var(--blissy-btn-cta-font-family);
  font-size: var(--blissy-btn-cta-font-size);
  font-weight: var(--blissy-btn-cta-font-weight);
  letter-spacing: var(--blissy-btn-cta-tracking);
  text-transform: uppercase;
  padding: var(--blissy-btn-cta-padding);
  border-radius: var(--blissy-btn-cta-radius);
  height: var(--blissy-btn-cta-height);
  text-decoration: none;
  transition: background 0.2s;
}
.nt-home-hero-btn-primary:hover {
  background: var(--blissy-color-cta-hover);
  color: var(--blissy-btn-cta-color);
}

.nt-home-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--blissy-color-navy);
  font-family: var(--blissy-font-body);
  font-size: var(--blissy-text-base);
  font-weight: var(--blissy-weight-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
  height: var(--blissy-btn-cta-height);
  padding: 0 var(--blissy-gap-sm);
  border-radius: var(--blissy-btn-cta-radius);
  transition: color 0.2s;
}
.nt-home-hero-btn-secondary:hover {
  color: var(--blissy-color-cta);
}

@media (max-width: 900px) {
  .nt-home-hero {
    height: auto;
    min-height: var(--blissy-hero-height-home);
    background-image:
      linear-gradient(to bottom, var(--blissy-color-white) 55%, transparent 85%),
      var(--nt-home-hero-bg);
    background-position: center bottom;
    align-items: flex-start;
    padding-top: var(--blissy-section-py-md);
    padding-bottom: calc(var(--blissy-hero-height-home) * 0.4);
  }
  .nt-home-hero-inner {
    width: calc(100% - calc(var(--blissy-gap-lg) * 2));
    max-width: 100%;
  }
  .nt-home-hero-heading {
    font-size: var(--blissy-text-3xl);
  }
}

@media (max-width: 480px) {
  .nt-home-hero {
    padding-bottom: calc(var(--blissy-hero-height-home) * 0.5);
  }
  .nt-home-hero-heading {
    font-size: var(--blissy-text-2xl);
  }
  .nt-home-hero-lede {
    font-size: var(--blissy-text-base);
  }
}

/* ─── HERO (legacy — kept for fallback) ─── */
.hero-section {
  overflow: hidden;
  padding: clamp(50px, 7vw, 100px) 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(183, 122, 57, 0.12), transparent 26%),
    linear-gradient(135deg, #fbfaf5 0%, #eef8f2 100%);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.06;
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--nt-gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-lede {
  max-width: 580px;
  margin: 18px 0 22px;
  color: var(--nt-muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  font-weight: 700;
  font-size: 15px;
}
.hero-points li { position: relative; padding-left: 26px; }
.hero-points li::before {
  content: "";
  position: absolute; top: 8px; left: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--nt-green);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-social-proof {
  margin: 18px 0 0;
  color: var(--nt-muted);
  font-size: 14px;
}
.hero-social-proof strong { color: var(--nt-ink); }

.hero-media { justify-self: center; width: min(460px, 100%); }
.hero-media img { width: 100%; border-radius: 12px; box-shadow: var(--nt-shadow); }

/* ─── TRUST STRIP ─── */
.trust-strip {
  padding: 18px 0;
  background: var(--nt-green-dark);
  color: var(--nt-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon { font-size: 22px; flex: 0 0 auto; }
.trust-item strong { display: block; font-size: 13px; font-weight: 800; }
.trust-item span { display: block; font-size: 11.5px; color: rgba(255,255,255,0.72); margin-top: 1px; }

/* ─── CONTENT BANDS ─── */
.content-band { padding: clamp(60px, 8vw, 108px) 0; }
.content-band.muted { background: var(--nt-soft); }

.content-band h2 {
  margin: 10px 0 16px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.08;
}
.content-band p { color: var(--nt-muted); font-size: 17px; line-height: 1.6; }

.section-image { width: 100%; border-radius: var(--nt-radius); box-shadow: var(--nt-shadow); }

/* ─── BUNDLE SECTION (legacy) ─── */
.bundle-band { background: var(--nt-cream); }

/* ─── FEATURED PRODUCTS GRID ─── */
.nt-featured-band {
  background: var(--blissy-color-white);
  padding-top: var(--blissy-gap-lg);
}

.nt-featured-empty {
  text-align: center;
  color: var(--blissy-text-muted);
  padding: var(--blissy-section-py-md) 0;
}

.nt-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--blissy-gap-lg);
  margin-top: var(--blissy-gap-md);
}

.nt-product-card {
  display: flex;
  flex-direction: column;
  background: var(--blissy-color-white);
  border-radius: var(--blissy-radius-sm);
  overflow: hidden;
  transition: transform 140ms, box-shadow 140ms;
}
.nt-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--blissy-shadow-box-lg);
}

.nt-product-card-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--blissy-bg-ivory);
}
.nt-product-card-img-wrap img,
.nt-product-card-img-wrap .nt-product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms;
}
.nt-product-card:hover .nt-product-card-img-wrap img {
  transform: scale(1.04);
}

.nt-product-card-promo {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 14px;
  background: var(--blissy-color-star);
  color: var(--blissy-color-black);
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-base);
  font-weight: var(--blissy-weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.nt-product-card-body {
  padding: var(--blissy-gap-md);
  display: flex;
  flex-direction: column;
  gap: var(--blissy-gap-xs);
  flex: 1;
}

.nt-product-card-title {
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-lg);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-ink);
  margin: 0;
  line-height: var(--blissy-leading-snug);
}
.nt-product-card-title a {
  color: inherit;
  text-decoration: none;
}
.nt-product-card-title a:hover { text-decoration: underline; }

.nt-product-card-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--blissy-font-body);
}

/* Line 1: sale price/ea + inline promo badge */
.nt-pcp-line1 {
  display: flex;
  align-items: center;
  gap: var(--blissy-gap-xs);
}
.nt-pcp-unit {
  font-size: var(--blissy-text-sm);
  color: var(--blissy-text-primary);
}
.nt-pcp-unit .woocommerce-Price-amount { font-size: inherit; }

.nt-pcp-promo-inline {
  background: var(--blissy-color-star);
  color: var(--blissy-color-black);
  font-weight: var(--blissy-weight-bold);
  font-size: var(--blissy-text-xs);
  padding: 2px 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Line 2: regular price + REGULAR PRICE label */
.nt-pcp-line2 {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.nt-pcp-regular-price {
  font-size: var(--blissy-text-xl);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-ink);
}
.nt-pcp-regular-price .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; }

.nt-pcp-regular-label {
  font-size: var(--blissy-text-xs);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nt-product-card-rating {
  display: flex;
  align-items: center;
  gap: var(--blissy-gap-xs);
  font-family: var(--blissy-font-body);
  font-size: var(--blissy-text-sm);
  color: var(--blissy-text-muted);
}
.nt-product-card-stars {
  color: var(--blissy-color-star);
  letter-spacing: 1px;
}

.nt-product-card-atc { margin-top: auto; }

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 42px;
}

.bundle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 36px);
  border: 2px solid var(--nt-line);
  border-radius: 14px;
  background: var(--nt-white);
  box-shadow: 0 8px 30px rgba(28, 49, 40, 0.08);
  transition: transform 140ms, box-shadow 140ms;
}
.bundle-card:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(28, 49, 40, 0.14); }

.bundle-card-featured {
  border-color: var(--nt-green);
  border-width: 2.5px;
  background: #fafffb;
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(47, 111, 84, 0.18);
}
.bundle-card-featured:hover { transform: translateY(-9px); }

.bundle-badge-best {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  border-radius: 20px;
  background: var(--nt-gold);
  color: var(--nt-white);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.bundle-card:has(.nt-bundle-promo-badge) {
  padding-top: calc(clamp(22px, 3vw, 36px) + 46px);
}

.nt-bundle-promo-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px var(--blissy-gap-sm);
  background: var(--blissy-color-star);
  color: var(--blissy-color-black);
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-lg);
  font-weight: var(--blissy-weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px 12px 0 0;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

.bundle-severity {
  margin: 0 0 6px;
  color: var(--nt-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bundle-card h3 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 900;
}

.bundle-qty {
  margin: 0 0 18px;
  color: var(--nt-muted);
  font-size: 15px;
}

.bundle-price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.bundle-price-old {
  color: var(--nt-muted);
  font-size: 15px;
  text-decoration: line-through;
}
.bundle-price-new {
  color: var(--nt-ink);
  font-size: 30px;
  font-weight: 900;
}
.bundle-save-tag {
  padding: 3px 10px;
  border-radius: 20px;
  background: #d4edda;
  color: #1a7a3c;
  font-size: 12px;
  font-weight: 900;
}

.bundle-features {
  flex: 1;
  display: grid;
  gap: 9px;
  margin: 0 0 6px;
  padding: 0;
  list-style: none;
}
.bundle-features li {
  font-size: 14px;
  font-weight: 600;
  color: var(--nt-muted);
}

.bundle-note {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--nt-muted);
}

/* ─── STEPS ─── */
.steps {
  display: grid;
  gap: 20px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  color: var(--nt-white);
  background: var(--nt-green);
  font-weight: 900;
  font-size: 18px;
  flex: 0 0 48px;
}
.steps strong { display: block; font-size: 17px; margin-bottom: 4px; color: var(--nt-ink); }
.steps p { margin: 0; font-size: 15px; }

/* ─── BEFORE / AFTER ─── */
.before-after-band { background: var(--nt-cream); }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 40px;
}

.ba-card { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--nt-shadow); }
.ba-card img { width: 100%; }
.ba-label {
  padding: 18px 20px;
  background: var(--nt-white);
  border-top: 1px solid var(--nt-line);
}
.ba-week {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--nt-green);
  color: var(--nt-white);
  font-size: 12px;
  font-weight: 800;
}
.ba-label p { margin: 0; font-size: 14px; color: var(--nt-muted); font-style: italic; }

.ba-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  padding: 22px;
  border: 1.5px solid var(--nt-line);
  border-radius: 12px;
  background: var(--nt-white);
  text-align: center;
  box-shadow: 0 6px 20px rgba(28, 49, 40, 0.07);
}
.stat-num {
  display: block;
  font-size: 38px;
  font-weight: 900;
  color: var(--nt-green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc { font-size: 13px; color: var(--nt-muted); line-height: 1.4; }

/* ─── REVIEWS ─── */
.reviews-band {}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1.5px solid var(--nt-line);
  border-radius: 14px;
  background: var(--nt-white);
  box-shadow: 0 6px 22px rgba(28, 49, 40, 0.07);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.review-stars { font-size: 14px; }
.review-verified { font-size: 11px; color: var(--nt-green); font-weight: 800; }

.review-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.review-day-tag {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--nt-gold);
}

.review-body {
  flex: 1;
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--nt-muted);
  line-height: 1.55;
}

.review-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--nt-ink);
  margin-bottom: 12px;
}

.review-photo {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1;
  object-fit: cover;
}

.reviews-cta { text-align: center; margin-top: 36px; }

/* ─── COMPARE ─── */
.compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 36px; }

.compare-card {
  padding: clamp(22px, 3.5vw, 36px);
  border: 2px solid var(--nt-line);
  border-radius: 14px;
  background: var(--nt-white);
  box-shadow: 0 8px 28px rgba(28, 49, 40, 0.07);
}
.compare-card.highlighted { border-color: var(--nt-green); background: #fafffb; }

.compare-logo {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--nt-ink);
}
.highlighted .compare-logo { color: var(--nt-green); }

.compare-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.compare-list li { font-size: 15px; padding-left: 24px; position: relative; }
.compare-list li::before { position: absolute; left: 0; font-weight: 900; }
.compare-list li.good { color: var(--nt-ink); }
.compare-list li.good::before { content: "✓"; color: var(--nt-green); }
.compare-list li.bad { color: var(--nt-muted); }
.compare-list li.bad::before { content: "✗"; color: #c44; }

/* ─── CERTIFICATIONS / LOGOS ─── */
.cert-band {}

.cert-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cert-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 16px;
  border: 1.5px solid var(--nt-line);
  border-radius: 12px;
  background: var(--nt-white);
  text-align: center;
}
.cert-logo-item img { width: 100%; max-height: 80px; object-fit: contain; }
.cert-logo-item p { margin: 0; font-size: 13px; font-weight: 800; color: var(--nt-ink); }

.brand-trust-img { margin-top: 36px; border-radius: var(--nt-radius); overflow: hidden; box-shadow: var(--nt-shadow); }
.brand-trust-img img { width: 100%; }

/* ─── STORY BAND ─── */
.story-band {
  background: linear-gradient(135deg, #173d30 0%, #214d3b 100%);
  color: var(--nt-white);
}
.story-band p { color: rgba(255,255,255,0.78); }
.story-band h2 { color: var(--nt-white); }

/* ─── FAQ ─── */
.faq-band {}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.faq-grid details {
  padding: 20px 22px;
  border: 1.5px solid var(--nt-line);
  border-radius: 10px;
  background: var(--nt-white);
  box-shadow: 0 4px 14px rgba(28, 49, 40, 0.06);
  transition: border-color 120ms;
}
.faq-grid details[open] { border-color: var(--nt-green); }
.faq-grid summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--nt-green);
  flex: 0 0 auto;
  transition: transform 200ms;
}
.faq-grid details[open] summary::after { transform: rotate(45deg); }
.faq-grid p { margin: 14px 0 0; font-size: 15px; color: var(--nt-muted); line-height: 1.6; }

/* ─── EMAIL BAND ─── */
.email-band {
  background: linear-gradient(135deg, #2f6f54 0%, #214d3b 100%);
  color: var(--nt-white);
}

.email-inner { text-align: center; }
.email-inner .eyebrow { color: var(--nt-gold); }
.email-inner h2 { color: var(--nt-white); margin-bottom: 12px; }
.email-inner > p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }

.email-form {}
.email-row {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}
.email-row input {
  flex: 1;
  min-height: 50px;
  padding: 0 16px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--nt-radius);
  background: rgba(255,255,255,0.12);
  color: var(--nt-white);
  font-size: 15px;
  outline: none;
  transition: border-color 120ms;
}
.email-row input::placeholder { color: rgba(255,255,255,0.55); }
.email-row input:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.18); }
.email-row .btn-primary {
  background: var(--nt-gold);
  box-shadow: 0 6px 18px rgba(183, 122, 57, 0.35);
  white-space: nowrap;
}
.email-row .btn-primary:hover { background: #a06b2e; }
.email-note { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.6); }

/* ─── FOOTER TRUST BAR ─── */
.footer-trust-bar {
  background: var(--nt-green-dark);
  color: var(--nt-white);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 13px;
  font-weight: 700;
}
.footer-trust-inner span { display: flex; align-items: center; gap: 6px; }

/* ─── FOOTER ─── */
.site-footer {
  background: #0f1a13;
  color: var(--nt-white);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 36px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-col {}
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 14px; margin: 12px 0 20px; max-width: 280px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
  transition: color 120ms, border-color 120ms, background 120ms;
}
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }

.footer-nav-col h4, .footer-contact-col h4 {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-nav-col nav { display: grid; gap: 10px; }
.footer-nav-col a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.72); transition: color 120ms; }
.footer-nav-col a:hover { color: #fff; }

.footer-contact-col p { margin: 0 0 10px; font-size: 13.5px; color: rgba(255,255,255,0.65); }
.footer-contact-col a { color: rgba(255,255,255,0.8); text-decoration: underline; }

.footer-bottom {
  padding: 24px 0;
  background: #080f0a;
}
.footer-bottom-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.6); }
.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ─── WOOCOMMERCE — SHOP / ARCHIVE ─── */
.content-band .woocommerce { min-height: 420px; }

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.woocommerce ul.products li.product,
.woocommerce div.product { border-radius: var(--nt-radius); }

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 6px;
  color: var(--nt-white);
  background: var(--nt-green);
  font-weight: 800;
}

/* ═══════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE — BLISSY STYLE
   ═══════════════════════════════════════════════════════ */

/* ── Two-column grid: image left, summary right ── */
.single-product div.product {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 0 56px;
  align-items: start;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 24px;
}

.single-product .woocommerce-product-gallery { grid-column: 1 !important; grid-row: 1 !important; }
.single-product .summary.entry-summary      { grid-column: 2 !important; grid-row: 1 !important; }
.single-product .woocommerce-tabs,
.single-product .related.products,
.single-product .up-sells.products          { grid-column: 1 / -1 !important; }

/* ── Title ── */
.single-product .product_title.entry-title {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--nt-ink);
  line-height: 1.25;
  margin: 0 0 10px;
}

/* ── Star rating ── */
.single-product .woocommerce-product-rating { margin-bottom: 10px; }
.single-product .star-rating               { color: #f5a623; }

/* ── Price ── */
.single-product .summary .price {
  font-size: 28px;
  font-weight: 800;
  color: var(--nt-green);
  display: block;
  margin: 0 0 6px;
}

/* ── Free Shipping pill ── */
.nt-fs-pill-wrap { margin: 0 0 16px; }
.nt-fs-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #eaf5f0;
  color: var(--nt-green);
  border: 1px solid #b5d9c5;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
}

/* ── Promo box (SALE tag + dark panel) ── */
.nt-promo-box {
  display: flex;
  border: 1px solid #aeb6ad;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.nt-promo-box__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  padding: 18px 14px;
  background: #fff;
  flex-shrink: 0;
}

.nt-sale-tag {
  display: inline-block;
  background: #c66b3d;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 9px 18px 9px 12px;
  border-radius: 6px;
  transform: rotate(-42deg);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.nt-promo-box__copy {
  flex: 1;
  background: #111411;
  color: #fff;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.nt-pb-headline { font-size: 22px; font-weight: 900; display: block; margin-bottom: 3px; }
.nt-pb-price,
.nt-pb-save     { color: #d9df54; font-weight: 900; }

/* ── Countdown bar ── */
.nt-countdown-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  background: #fff;
  border: 1px solid #aeb6ad;
  border-top: none;
  padding: 9px 14px;
  font-size: 13px;
}

.nt-cd-label  { color: #e03e2d; font-weight: 700; flex-shrink: 0; }
.nt-cd-timer  { font-weight: 700; font-variant-numeric: tabular-nums; flex-shrink: 0; }
.nt-cd-timer strong { display: inline-block; min-width: 20px; text-align: center; }
.nt-cd-social {
  margin-left: auto;
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ── Today bar (green) ── */
.nt-today-bar {
  background: #d7a43a;
  color: #111411;
  text-align: center;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
  border-radius: 0;
  margin-bottom: 18px;
}

/* ── Short description ── */
.single-product .woocommerce-product-details__short-description {
  font-size: 14.5px;
  color: var(--nt-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ── Quantity + Add to Cart form ── */
.single-product form.cart {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}

.single-product form.cart .quantity input[type="number"] {
  width: 66px !important;
  height: 56px !important;
  border: 2px solid #ddd !important;
  border-radius: 8px !important;
  text-align: center;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--nt-ink) !important;
  background: #fff !important;
}

/* ── ADD TO CART button — orange, full width ── */
.single-product .single_add_to_cart_button.button {
  flex: 1 !important;
  height: 56px !important;
  background: #e07c1c !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 16px rgba(224,124,28,0.35) !important;
}
.single-product .single_add_to_cart_button.button:hover { background: #c96a10 !important; }

/* ── Trust badges below Add to Cart ── */
.nt-trust-badges-product {
  display: flex;
  background: #f4f6fb;
  border-radius: 8px;
  border: 1px solid #e0e4ef;
  overflow: hidden;
  margin-bottom: 24px;
}

.nt-tbp {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #3a4a7a;
  border-right: 1px solid #e0e4ef;
  text-align: center;
  line-height: 1.2;
}
.nt-tbp:last-child { border-right: none; }
.nt-tbp svg { stroke: #3a4a7a; }

.nt-bb-description {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--nt-line);
  font-size: 14px;
  color: var(--nt-muted);
  line-height: 1.7;
}
.nt-bb-description p { margin: 0 0 8px; }
.nt-bb-description p:last-child { margin-bottom: 0; }

/* ── WooCommerce Tabs — Blissy style ── */
.woocommerce-tabs.wc-tabs-wrapper {
  margin-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid var(--nt-line);
}

.woocommerce-tabs ul.tabs.wc-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #ddd;
  background: #fff;
}

.woocommerce-tabs ul.tabs.wc-tabs li {
  margin: 0;
  border: none !important;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.woocommerce-tabs ul.tabs.wc-tabs::before,
.woocommerce-tabs ul.tabs.wc-tabs::after,
.woocommerce-tabs ul.tabs.wc-tabs li::before,
.woocommerce-tabs ul.tabs.wc-tabs li::after { display: none !important; content: none !important; }

.woocommerce-tabs ul.tabs.wc-tabs li a {
  display: block;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  color: #999;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s;
  text-decoration: none;
}

.woocommerce-tabs ul.tabs.wc-tabs li.active a,
.woocommerce-tabs ul.tabs.wc-tabs li.active a:focus {
  color: var(--nt-ink) !important;
  border-bottom-color: var(--nt-green-dark) !important;
  background: none !important;
}

.woocommerce-tabs .panel {
  background: #fdf9f4 !important;
  padding: 36px !important;
  border: 1px solid var(--nt-line) !important;
  border-top: none !important;
  border-radius: 0 0 10px 10px !important;
  margin: 0 !important;
}

.woocommerce-tabs .panel h2 { font-size: 22px; font-weight: 800; margin-top: 0; }
.woocommerce-tabs .panel h3 { font-size: 18px; font-weight: 700; }

/* ── Related Products ── */
.single-product .related.products { margin-top: 48px; }
.single-product .related.products > h2 { font-size: 24px; font-weight: 800; margin-bottom: 24px; }

/* ─── PAGE / BLOG ─── */
.page-content, .post-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1.5px solid var(--nt-line);
  border-radius: var(--nt-radius);
  background: var(--nt-white);
  box-shadow: 0 8px 30px rgba(28, 49, 40, 0.08);
}
.page-content h1, .post-card h1 {
  margin-top: 0;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .cert-logos { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  /* Header responsive */
  .header-top { grid-template-columns: auto 1fr auto; min-height: 62px; padding: 10px 18px; }
  .brand { font-size: 32px; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 0; }
  .primary-nav { display: none; border-top: 1px solid var(--nt-line); }
  .primary-nav.is-open { display: block; }
  .primary-nav .menu { flex-direction: column; align-items: flex-start; gap: 2px; padding: 12px 18px; }
  .primary-nav .menu li a { padding: 9px 14px; font-size: 15px; }
  .header-tool-link span { display: none; } /* hide labels on mobile */
  .header-tools { gap: 16px; }
  .promo-main { min-height: auto; padding: 10px 16px; gap: 12px; }
  .promo-seal { width: 46px; height: 46px; font-size: 8px; }
  .promo-main-copy strong { font-size: 14px; }

  /* Layout */
  .hero-grid, .split-grid, .reverse { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .bundle-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .bundle-card-featured { transform: none; }
  .ba-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-trust-inner { gap: 10px 18px; font-size: 12px; }
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .header-top { padding: 8px 14px; min-height: 56px; }
  .brand { font-size: 26px; }
  .header-tools { gap: 14px; }
  .promo-urgent, .promo-award { font-size: 11px; padding: 6px 14px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .cert-logos { grid-template-columns: repeat(2, 1fr); }
  .ba-stats { grid-template-columns: repeat(2, 1fr); }
  .email-row { flex-direction: column; }
  .email-row .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; padding-bottom: 36px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-contact-col { grid-column: 1 / -1; }
  .footer-trust-inner { flex-direction: column; gap: 8px; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
}

/* ── Single Product responsive ── */
@media (max-width: 768px) {
  .single-product div.product {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 16px 0;
    margin-top: 20px;
  }
  .single-product .woocommerce-product-gallery { grid-column: 1; grid-row: 1; }
  .single-product .summary.entry-summary       { grid-column: 1; grid-row: 2; }
  .nt-pb-headline { white-space: normal; font-size: 14px; }
  .nt-cd-social { margin-left: 0; }
  .woocommerce-tabs ul.tabs.wc-tabs li a { padding: 12px 18px; font-size: 13px; }
  .woocommerce-tabs .panel { padding: 22px 16px !important; }
}

/* ═══════════════════════════════════════════════════════
   CUSTOM PRODUCT PAGE (single-product.php)
   ═══════════════════════════════════════════════════════ */

/* ── Wrapper & hero grid ── */
.nt-pdp-wrap { padding: 32px 0 0; }
.nt-pdp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  align-items: start;
}

/* ── Gallery trust ── */
.nt-gallery-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 12px;
  color: var(--nt-muted);
  font-weight: 600;
}

/* ── Buy Box ── */
.nt-buybox { padding-top: 6px; }

.nt-bb-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  color: var(--nt-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nt-bb-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.nt-bb-stars { display: flex; gap: 2px; align-items: center; }
.nt-bb-rcount {
  font-size: 13px;
  font-weight: 700;
  color: var(--nt-green);
  text-decoration: underline;
}
.nt-bb-rcount:hover { color: var(--nt-green-dark); }

.nt-bb-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--nt-ink);
  margin: 0 0 14px;
}

.nt-bb-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nt-ink);
}
.nt-bb-bullets li {
  padding-left: 22px;
  position: relative;
}
.nt-bb-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--nt-green);
  font-weight: 900;
}

/* ── Promo box link ── */
.nt-pb-link {
  font-size: 12.5px;
  color: #f5c842;
  font-weight: 700;
  text-decoration: underline;
}

/* ── Price row ── */
.nt-bb-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.nt-bb-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--nt-green);
}
.nt-bb-price .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; color: inherit; }
.nt-bb-save-badge {
  background: #d63838;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 4px;
}

.nt-bb-shipping-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--nt-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nt-product-offer-card {
  margin: 14px 0 18px;
}

/* ── Stock ── */
.nt-bb-stock {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 14px;
}
.nt-bb-stock.in-stock { color: var(--nt-green); }
.nt-bb-stock.oos { color: #e07c1c; }

/* ── Buy Now button ── */
.btn-buynow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  background: var(--nt-ink);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 8px;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
  transition: background 0.2s;
}
.btn-buynow:hover { background: #333; color: #fff; }

/* ── SKU ── */
.nt-bb-sku {
  font-size: 12px;
  color: var(--nt-muted);
  margin: 0;
}

/* ── Social proof strip ── */
.nt-sp-strip {
  background: var(--nt-green-dark);
  color: #fff;
  padding: 14px 0;
}
.nt-sp-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.nt-sp-item { display: flex; align-items: center; gap: 5px; }
.nt-sp-sep { opacity: 0.4; }

/* ── Highlights ── */
.nt-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.nt-highlight-card {
  background: var(--nt-white);
  border: 1.5px solid var(--nt-line);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.nt-hc-icon { font-size: 36px; margin-bottom: 14px; }
.nt-highlight-card h3 { font-size: 18px; font-weight: 800; margin: 0 0 10px; }
.nt-highlight-card p { font-size: 14.5px; color: var(--nt-muted); margin: 0; line-height: 1.6; }

/* ── How to Use ── */
.nt-steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.nt-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 24px 16px;
}
.nt-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--nt-green);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(47,111,84,0.3);
}
.nt-step h3 { font-size: 17px; font-weight: 800; margin: 0 0 8px; }
.nt-step p { font-size: 14px; color: var(--nt-muted); margin: 0; line-height: 1.6; }
.nt-step-arrow { font-size: 28px; color: var(--nt-line); padding: 0 6px; flex-shrink: 0; }
.nt-howto-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--nt-muted);
  background: var(--nt-white);
  border: 1px solid var(--nt-line);
  border-radius: 8px;
  padding: 12px 20px;
  display: inline-block;
}

/* ── Before / After ── */
.nt-ba-showcase { text-align: center; }
.nt-ba-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--nt-shadow);
  margin-bottom: 32px;
}
.nt-ba-image-wrap img { width: 100%; height: auto; }
.nt-ba-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nt-ba-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 12px;
  background: var(--nt-soft);
  border-radius: 10px;
  border: 1px solid var(--nt-line);
}
.nt-ba-stat-num { font-size: 32px; font-weight: 900; color: var(--nt-green-dark); }
.nt-ba-stat-label { font-size: 13px; color: var(--nt-muted); text-align: center; line-height: 1.4; }

/* ── Ingredients ── */
.nt-ing-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}
.nt-ing-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 14px;
}
.nt-ing-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  background: var(--nt-white);
  border-radius: 8px;
  border: 1px solid var(--nt-line);
}
.nt-ing-list strong { font-size: 15px; color: var(--nt-green-dark); }
.nt-ing-list span { font-size: 13.5px; color: var(--nt-muted); }
.nt-ing-note { font-size: 13px; color: var(--nt-muted); margin: 0; }
.nt-ing-image img {
  border-radius: 14px;
  box-shadow: var(--nt-shadow);
  width: 100%;
  height: auto;
}

/* ── Bundle upsell ── */
.nt-bu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.nt-bu-card {
  background: var(--nt-white);
  border: 2px solid var(--nt-line);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.nt-bu-card.nt-bu-featured {
  border-color: var(--nt-green);
  box-shadow: 0 8px 32px rgba(47,111,84,0.18);
}
.nt-bu-badge {
  position: absolute;
  top: -14px;
  background: var(--nt-green);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 20px;
}
.nt-bu-label { font-size: 13px; color: var(--nt-muted); font-weight: 600; margin: 0; }
.nt-bu-qty { font-size: 22px; font-weight: 900; margin: 0; }
.nt-bu-price { font-size: 14px; color: var(--nt-green-dark); font-weight: 700; margin: 0; }
.nt-bu-card .btn { width: 100%; }

/* ── PDP FAQ ── */
.nt-pdp-faq-grid { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.nt-pdp-faq-item {
  border: 1.5px solid var(--nt-line);
  border-radius: 10px;
  overflow: hidden;
}
.nt-pdp-faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--nt-white);
}
.nt-pdp-faq-item summary::-webkit-details-marker { display: none; }
.nt-pdp-faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--nt-green);
  flex-shrink: 0;
  transition: transform 200ms;
}
.nt-pdp-faq-item[open] summary::after { transform: rotate(45deg); }
.nt-pdp-faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--nt-muted);
  line-height: 1.65;
  background: var(--nt-soft);
}

/* ── Certifications ── */
.nt-certs-band { text-align: center; }
.nt-certs-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--nt-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.cert-text-badge {
  font-size: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

/* ── WooCommerce product page fixes ── */

/* ── White background for entire product page area ── */
.single-product .shop-band { background: #f5f4f0 !important; }
.single-product div.product { background: transparent !important; }

/* ── After-summary sections: break out of 2-column grid → full width ── */
.single-product div.product > section,
.single-product div.product > .woocommerce-tabs,
.single-product div.product > .nt-wc-reviews,
.single-product div.product > .content-band,
.single-product div.product > #nt-why,
.single-product div.product > #nt-how,
.single-product div.product > #nt-before-after,
.single-product div.product > #nt-compare,
.single-product div.product > #nt-ingredients,
.single-product div.product > #nt-reviews,
.single-product div.product > #nt-bundle,
.single-product div.product > #nt-faq,
.single-product div.product > #nt-certs {
  grid-column: 1 / -1 !important;
  grid-row: auto !important;
}

/* Gallery column: white card */
.single-product .woocommerce-product-gallery {
  background: #ffffff !important;
  border-radius: 12px;
  overflow: hidden;
}
.single-product .woocommerce-product-gallery__wrapper { background: #ffffff !important; }

/* Buy box column: white card with subtle border */
.single-product .summary.entry-summary {
  background: #ffffff !important;
  border-radius: 12px;
  padding: 28px 28px 24px !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

/* Fix product title color on white */
.single-product .product_title.entry-title {
  color: #17211c !important;
  font-size: clamp(20px, 2.2vw, 28px) !important;
}

/* Eyebrow: subtle muted label instead of gold uppercase */
.nt-bb-eyebrow {
  color: var(--nt-muted) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* Fix rcount link color on white */
.nt-bb-rcount { color: var(--nt-green) !important; }

/* Gallery: remove empty-area gap from empty thumbnail strip */
.single-product .woocommerce-product-gallery { min-height: auto !important; }
.single-product .woocommerce-product-gallery__wrapper { min-height: 0 !important; }
.flex-control-nav:empty,
ol.flex-control-thumbs:empty { display: none !important; height: 0 !important; margin: 0 !important; }

/* Hide breadcrumb on product pages */
.woocommerce-breadcrumb { display: none !important; }

/* Hide stock quantity number ("1000 in stock") — we show our own badge */
form.cart p.stock,
.woocommerce-product-gallery ~ .entry-summary p.stock { display: none !important; }

/* Reduce top spacing on product page */
.woocommerce div.product { margin-top: 0; padding-top: 12px; }
.shop-band { padding-top: 0 !important; }
.woocommerce-notices-wrapper:empty { display: none; }

/* WooCommerce gallery thumbnails */
.woocommerce-product-gallery ol.flex-control-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 0 0;
  margin: 0;
  list-style: none;
}
.woocommerce-product-gallery ol.flex-control-thumbs li { flex: 0 0 auto; }
.woocommerce-product-gallery ol.flex-control-thumbs img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--nt-line);
  cursor: pointer;
  transition: border-color 150ms;
}
.woocommerce-product-gallery ol.flex-control-thumbs img:hover,
.woocommerce-product-gallery ol.flex-control-thumbs img.flex-active {
  border-color: var(--nt-green);
}
/* Remove empty thumbnail strip gap */
.woocommerce-product-gallery ol.flex-control-thumbs:empty { display: none; }

/* ── WC reviews wrapper ── */
.nt-wc-reviews {
  margin-top: 48px;
  border-top: 1px solid var(--nt-line);
  padding-top: 36px;
}

/* ── Pack Selector ── */
.nt-pack-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 6px;
}
.nt-pack-opt {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--nt-line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 180ms, background 180ms;
  position: relative;
}
.nt-pack-opt:hover { border-color: var(--nt-green); }
.nt-pack-opt.is-active {
  border-color: var(--nt-green);
  background: #f0faf3;
}
.nt-pack-opt input[type="radio"] { accent-color: var(--nt-green); width: 18px; height: 18px; }
.nt-pack-label { font-size: 14px; font-weight: 600; color: var(--nt-ink); }
.nt-pack-label-save {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 700;
  background: var(--nt-green);
  color: #fff;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.nt-pack-price { font-size: 16px; font-weight: 800; color: var(--nt-ink); white-space: nowrap; }
.nt-pack-per { font-size: 11px; color: var(--nt-muted); display: block; text-align: right; }
.nt-pack-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nt-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
}

/* ── Payment Icons ── */
.nt-payment-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.nt-payment-icons span {
  display: inline-block;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  color: #444;
  letter-spacing: 0.2px;
}
.nt-payment-icons .pi-visa { background: #1a1f71; color: #fff; }
.nt-payment-icons .pi-mc { background: #eb001b; color: #fff; }
.nt-payment-icons .pi-amex { background: #007bc1; color: #fff; }
.nt-payment-icons .pi-pp { background: #003087; color: #fff; }
.nt-payment-icons .pi-apple { background: #000; color: #fff; }
.nt-payment-icons .pi-klarna { background: #ffb3c7; color: #000; }

/* ── Comparison Table ── */
.nt-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.nt-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.nt-compare-table th {
  padding: 14px 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nt-compare-table th:first-child { text-align: left; color: var(--nt-muted); }
.nt-ct-us th { background: var(--nt-green); color: #fff; border-radius: 8px 8px 0 0; }
.nt-ct-them th { background: #e8e8e8; color: #666; border-radius: 8px 8px 0 0; }
.nt-compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--nt-line);
  text-align: center;
  vertical-align: middle;
}
.nt-compare-table td:first-child { text-align: left; font-weight: 600; color: var(--nt-ink); }
.nt-compare-table tbody tr:last-child td { border-bottom: none; }
.nt-compare-table tbody tr:hover { background: #fafafa; }
.nt-ct-us td { background: #f0faf3; }
.ct-yes { color: #16a34a; font-size: 18px; font-weight: 900; }
.ct-no  { color: #ef4444; font-size: 18px; font-weight: 900; }

/* ── Pack selector sub-elements ── */
.nt-pack-options { display: flex; flex-direction: column; gap: 10px; }
.nt-pack-opt {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nt-pack-inner {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.nt-pack-qty { font-size: 14px; font-weight: 700; color: var(--nt-ink); }
.nt-pack-ppb { font-size: 13px; color: var(--nt-muted); flex: 1; }
.nt-pack-save {
  font-size: 11px;
  font-weight: 700;
  background: var(--nt-green);
  color: #fff;
  padding: 2px 7px;
  border-radius: 20px;
}
.nt-pack-best {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--nt-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
}

/* ── Rating score ── */
.nt-bb-rating-score {
  font-size: 13px;
  color: var(--nt-muted);
  margin-left: 4px;
}

/* ─── RESPONSIVE — Product page ─── */
@media (max-width: 960px) {
  .nt-pdp-hero { grid-template-columns: 1fr; gap: 28px; }
  .nt-highlights-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .nt-ba-stats-row { grid-template-columns: repeat(2, 1fr); }
  .nt-ing-grid { grid-template-columns: 1fr; gap: 32px; }
  .nt-ing-image { order: -1; max-width: 380px; margin: 0 auto; }
  .nt-bu-grid { grid-template-columns: 1fr; max-width: 360px; }
}

@media (max-width: 640px) {
  .nt-pdp-wrap { padding: 20px 0 0; }
  .nt-steps-grid { flex-direction: column; }
  .nt-step-arrow { transform: rotate(90deg); padding: 0; }
  .nt-ba-stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .nt-sp-sep { display: none; }
  .nt-highlights-grid { max-width: 100%; }
}

/* Local product layout tuning: keep gallery and buy box balanced. */
.single-product .shop-band {
  padding-top: 28px !important;
  background: #fff !important;
}

.single-product div.product {
  display: grid !important;
  grid-template-columns: minmax(620px, 800px) minmax(620px, 820px) !important;
  justify-content: center !important;
  align-items: start !important;
  gap: clamp(28px, 3vw, 52px) !important;
  width: min(1760px, calc(100% - 64px)) !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.single-product div.product div.images,
.single-product div.product div.summary,
.single-product .woocommerce-product-gallery,
.single-product .nt-product-media,
.single-product .summary.entry-summary {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  max-width: none !important;
}

.single-product .nt-product-media {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
}

.single-product .nt-product-main-image {
  width: 800px !important;
  max-width: 100% !important;
  height: 800px !important;
  max-height: 800px !important;
  aspect-ratio: 1 / 1 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07) !important;
  overflow: hidden !important;
}

.single-product .nt-product-main-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.single-product .woocommerce-product-gallery {
  opacity: 1 !important;
  aspect-ratio: auto !important;
  height: 320px !important;
  max-height: 320px !important;
  min-height: 0 !important;
  padding: clamp(14px, 2.2vw, 28px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07) !important;
}

.single-product .woocommerce-product-gallery .flex-viewport,
.single-product .woocommerce-product-gallery__wrapper,
.single-product .woocommerce-product-gallery__image,
.single-product .woocommerce-product-gallery__image a {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: 320px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.single-product div.product div.images {
  height: auto !important;
  max-height: none !important;
}

.single-product .woocommerce-product-gallery .flex-viewport {
  overflow: hidden !important;
}

.single-product .woocommerce-product-gallery__wrapper {
  margin: 0 !important;
}

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

.single-product .woocommerce-product-gallery__image a {
  pointer-events: none !important;
  cursor: default !important;
}

.single-product .summary.entry-summary {
  min-height: 540px !important;
  padding: clamp(16px, 2vw, 28px) 0 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.single-product .product_title.entry-title,
.single-product .nt-product-title {
  display: block !important;
  margin: 6px 0 16px !important;
  font-size: clamp(38px, 2.55vw, 52px) !important;
  line-height: 1.06 !important;
  color: var(--nt-ink) !important;
  letter-spacing: 0 !important;
  max-width: 820px !important;
}

.single-product .nt-bb-bullets {
  font-size: 16px !important;
  line-height: 1.45 !important;
}

@media (max-width: 980px) {
  .single-product div.product {
    grid-template-columns: minmax(0, 560px) !important;
    width: min(620px, calc(100% - 32px)) !important;
    gap: 24px !important;
  }

.single-product .summary.entry-summary {
  min-height: auto !important;
  }
}

/* PDP reference-page refinements: tabs, results image, editorial proof */
.single-product .nt-product-tabs-band,
.single-product .nt-product-tab-panels,
.single-product .nt-results-band,
.single-product .nt-editorial-proof-band,
.single-product .nt-experts-band,
.single-product .nt-wc-reviews {
  background: #ffffff !important;
}

.single-product .nt-reference-container,
.single-product .nt-experts-container,
.single-product .nt-product-tabs-container {
  width: min(1776px, calc(100vw - 136px)) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.single-product .nt-product-tabs-band {
  padding-top: clamp(36px, 5vw, 74px) !important;
  padding-bottom: 0 !important;
}

.single-product .nt-product-tabs {
  border-bottom: 8px solid #d9dee5 !important;
}

.single-product .nt-product-tab {
  min-height: 74px !important;
  color: #6a7280 !important;
  font-size: clamp(28px, 2.35vw, 42px) !important;
  font-weight: 400 !important;
}

.single-product .nt-product-tab.is-active {
  background: #f6e7e3 !important;
  color: var(--nt-ink) !important;
}

.single-product .nt-product-tab-panels {
  min-height: 0 !important;
  padding: clamp(54px, 5.2vw, 92px) clamp(28px, 5vw, 76px) !important;
}

.single-product .nt-product-tab-panel .eyebrow {
  color: var(--nt-green) !important;
  font-size: clamp(14px, 1.1vw, 20px) !important;
  letter-spacing: .14em !important;
}

.single-product .nt-product-tab-panel h2 {
  max-width: 980px !important;
  margin-bottom: 20px !important;
  color: var(--nt-ink) !important;
  font-size: clamp(46px, 4.6vw, 82px) !important;
  line-height: .98 !important;
}

.single-product .nt-tab-intro {
  max-width: 850px;
  margin: 0 auto 42px;
  color: var(--nt-muted);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.6;
}

.single-product .nt-detail-card-grid {
  max-width: 1220px !important;
}

.single-product .nt-detail-card-grid article {
  border-color: #dce3df !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

.single-product .nt-results-band {
  padding: clamp(54px, 5vw, 96px) 0 clamp(24px, 2.4vw, 46px) !important;
}

.single-product .nt-results-grid {
  display: grid;
  grid-template-columns: minmax(380px, .72fr) minmax(540px, 1fr);
  gap: clamp(36px, 4.5vw, 84px);
  align-items: center;
}

.single-product .nt-results-copy .eyebrow {
  margin: 0 0 14px;
  color: var(--nt-green);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.single-product .nt-results-copy h2 {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--nt-ink);
  font-size: clamp(38px, 3.8vw, 68px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.single-product .nt-results-copy p {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--nt-muted);
  font-size: clamp(17px, 1.15vw, 21px);
  line-height: 1.65;
}

.single-product .nt-results-bullets {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-product .nt-results-bullets li {
  position: relative;
  padding-left: 34px;
  color: var(--nt-text);
  font-size: clamp(17px, 1.1vw, 20px);
  font-weight: 800;
  line-height: 1.45;
}

.single-product .nt-results-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--nt-green);
  font-weight: 900;
}

.single-product .nt-results-visual {
  margin: 0;
}

.single-product .nt-results-visual img,
.single-product .nt-editorial-proof-band img {
  display: block;
  width: 100%;
  height: auto;
}

.single-product .nt-reference-art-band {
  background: #ffffff !important;
}

.single-product .nt-reference-art-band .nt-reference-container {
  display: block;
}

.single-product .nt-reference-art-band img {
  display: block;
  width: 100%;
  max-width: 1500px;
  height: auto;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.single-product .nt-results-band.nt-reference-art-band img {
  max-width: 1340px;
}

.single-product .nt-results-visual img {
  border-radius: 0;
  box-shadow: none;
}

.single-product .nt-editorial-proof-band {
  padding: clamp(22px, 2.6vw, 54px) 0 clamp(48px, 5vw, 96px) !important;
}

.single-product .nt-editorial-proof-band img {
  max-width: 1500px;
  margin: 0 auto;
  background: #ffffff;
}

.single-product .nt-experts-band {
  padding-top: clamp(54px, 6vw, 116px) !important;
}

.single-product .nt-experts-heading {
  max-width: none !important;
  margin-bottom: clamp(32px, 3vw, 52px) !important;
  color: var(--nt-ink) !important;
  font-size: clamp(34px, 3vw, 58px) !important;
  line-height: 1 !important;
  letter-spacing: .04em !important;
}

.single-product .nt-experts-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(24px, 2.2vw, 48px) !important;
}

.single-product .nt-expert-card img {
  aspect-ratio: 591 / 730 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
}

.single-product .nt-expert-card blockquote {
  color: #111111 !important;
  font-size: clamp(17px, 1.25vw, 25px) !important;
  line-height: 1.42 !important;
}

@media (max-width: 1180px) {
  .single-product .nt-reference-container,
  .single-product .nt-experts-container,
  .single-product .nt-product-tabs-container {
    width: min(920px, calc(100vw - 32px)) !important;
  }

  .single-product .nt-results-grid,
  .single-product .nt-experts-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Expert proof and CusRev review sections */
.single-product .nt-experts-band {
  background: #ffffff !important;
  padding: 72px 0 84px;
}

.single-product .nt-experts-container {
  width: min(1868px, calc(100% - 136px));
  max-width: none;
  margin: 0 auto;
}

.single-product .nt-experts-heading {
  margin: 0 0 42px;
  color: var(--nt-ink, #192348);
  font-size: clamp(30px, 2.65vw, 52px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.single-product .nt-experts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 1.45vw, 28px);
}

.single-product .nt-expert-card {
  min-width: 0;
}

.single-product .nt-expert-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  margin: 0 0 34px;
  border-radius: 0;
  background: #f2f4f4;
}

.single-product .nt-expert-card blockquote {
  margin: 0;
  color: #151515;
  font-size: clamp(18px, 1.25vw, 25px);
  line-height: 1.42;
  font-weight: 400;
}

.single-product .nt-expert-card blockquote::before,
.single-product .nt-expert-card blockquote::after {
  content: '"';
}

.single-product .nt-expert-card h3 {
  margin: 34px 0 6px;
  color: #111111;
  font-size: clamp(20px, 1.35vw, 27px);
  line-height: 1.15;
  font-weight: 800;
}

.single-product .nt-expert-card p {
  margin: 0;
  color: var(--nt-muted, #657184);
  font-size: 16px;
  line-height: 1.35;
}

.single-product .nt-wc-reviews {
  background: #ffffff !important;
  padding: 68px 0 92px;
}

.single-product .nt-reviews-container {
  width: min(1868px, calc(100% - 136px));
  max-width: none;
  margin: 0 auto;
}

.single-product .nt-wc-reviews .cr-all-reviews-shortcode {
  color: var(--nt-ink, #192348);
}

.single-product .nt-wc-reviews .cr-summaryBox-wrap,
.single-product .nt-wc-reviews .cr-overall-rating-wrap,
.single-product .nt-wc-reviews .cr-count-row,
.single-product .nt-wc-reviews .cr-ajax-reviews-list {
  max-width: none;
}

.single-product .nt-wc-reviews .cr-summaryBox-wrap {
  margin-bottom: 46px;
}

.single-product .nt-wc-reviews .cr-all-reviews-add-review,
.single-product .nt-wc-reviews .cr-review-form-submit,
.single-product .nt-wc-reviews button,
.single-product .nt-wc-reviews .cr-show-more-button {
  border-radius: 0;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .single-product .nt-experts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .single-product .nt-experts-band,
  .single-product .nt-wc-reviews {
    padding: 46px 0 56px;
  }

  .single-product .nt-experts-container,
  .single-product .nt-reviews-container {
    width: min(100% - 30px, 560px);
  }

  .single-product .nt-experts-heading {
    margin-bottom: 28px;
    letter-spacing: .04em;
  }

  .single-product .nt-experts-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .single-product .nt-expert-card img {
    margin-bottom: 20px;
  }
}

.single-product div.product {
  grid-template-columns: minmax(640px, 800px) minmax(680px, 840px) !important;
  gap: clamp(36px, 3.2vw, 64px) !important;
  width: min(1780px, calc(100% - 64px)) !important;
}

.single-product .summary.entry-summary {
  align-self: start !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  min-height: 0 !important;
  padding: 8px 0 0 !important;
}

.single-product .nt-bb-eyebrow {
  margin: 0 0 8px !important;
  color: #2f3b5f !important;
  font-size: 24px !important;
  font-weight: 500 !important;
}

.single-product .product_title.entry-title,
.single-product .nt-product-title {
  max-width: 780px !important;
  margin: 0 0 14px !important;
  color: #17264d !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(38px, 2.35vw, 48px) !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
}

.single-product .nt-bb-rating {
  gap: 8px !important;
  margin: 0 0 10px !important;
  font-size: 22px !important;
}

.single-product .nt-bb-stars svg {
  width: 21px !important;
  height: 21px !important;
}

.single-product .nt-bb-rcount {
  color: #17264d !important;
  font-size: 23px !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

.single-product .nt-bb-breadcrumb {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 5px !important;
  margin: 0 0 14px !important;
  color: #17264d !important;
  font-size: 22px !important;
  line-height: 1.25 !important;
}

.single-product .nt-bb-breadcrumb a {
  color: #17264d !important;
  font-weight: 400 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.single-product .nt-bb-breadcrumb span {
  color: #17264d !important;
}

.single-product .nt-bb-price-row {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 18px !important;
}

.single-product .nt-bb-price {
  color: #2f7a3e !important;
  font-size: 31px !important;
  font-weight: 700 !important;
}

.single-product .nt-bb-shipping-badge {
  background: #3f5188 !important;
  color: #fff !important;
  border-radius: 3px !important;
  padding: 7px 10px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.single-product .nt-bb-stock {
  margin: 0 0 14px !important;
  color: var(--nt-green) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

.single-product .nt-product-offer-card {
  width: 100% !important;
  margin: 0 0 22px !important;
}

.single-product .nt-promo-box {
  min-height: 154px !important;
  border: 1px solid #aeb1aa !important;
  border-radius: 0 !important;
}

.single-product .nt-promo-box__tag {
  width: 136px !important;
  padding: 20px 16px !important;
}

.single-product .nt-sale-tag {
  background: #c66f42 !important;
  font-size: 24px !important;
  letter-spacing: 1.4px !important;
  padding: 11px 22px 11px 16px !important;
}

.single-product .nt-promo-box__copy {
  min-width: 0 !important;
  padding: 24px 34px !important;
  background: #070907 !important;
  gap: 8px !important;
  font-size: 20px !important;
  line-height: 1.28 !important;
}

.single-product .nt-pb-headline {
  margin: 0 !important;
  font-size: clamp(26px, 2vw, 34px) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

.single-product .nt-countdown-bar {
  min-height: 42px !important;
  padding: 8px 18px !important;
  border-color: #aeb1aa !important;
  background: #fff8ef !important;
  font-size: 18px !important;
}

.single-product .nt-cd-social {
  border-radius: 2px !important;
  padding: 5px 11px !important;
  font-size: 12px !important;
}

.single-product .nt-today-bar {
  margin: 0 !important;
  padding: 16px 20px !important;
  background: #f5c847 !important;
  color: #111411 !important;
  font-size: 19px !important;
  font-weight: 900 !important;
}

.single-product form.cart {
  gap: 14px !important;
  margin-top: 18px !important;
}

.single-product form.cart .quantity input[type="number"] {
  width: 86px !important;
  height: 62px !important;
  border: 2px solid #d6d9d2 !important;
  border-radius: 8px !important;
  font-size: 22px !important;
}

.single-product .single_add_to_cart_button.button {
  height: 62px !important;
  border-radius: 8px !important;
  background: #d98430 !important;
  box-shadow: none !important;
  font-size: 20px !important;
  letter-spacing: 2.4px !important;
}

.single-product .nt-product-main-image {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.single-product .nt-product-gallery-grid {
  margin-top: 24px !important;
  gap: 14px !important;
}

@media (max-width: 1500px) {
  .single-product div.product {
    grid-template-columns: minmax(560px, 720px) minmax(560px, 760px) !important;
  }

  .single-product .nt-product-main-image {
    width: 720px !important;
    height: 720px !important;
  }
}

@media (max-width: 980px) {
  .single-product div.product {
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(680px, calc(100% - 32px)) !important;
  }

  .single-product .nt-bb-eyebrow {
    font-size: 18px !important;
  }

  .single-product .product_title.entry-title,
  .single-product .nt-product-title {
    font-size: clamp(32px, 9vw, 42px) !important;
  }
}

/* Product media grid from uploaded product images. */
.single-product .nt-product-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.single-product .summary.entry-summary {
  grid-column: 2 !important;
  grid-row: 1 / span 2 !important;
}

.single-product .woocommerce-product-gallery ol.flex-control-thumbs {
  display: none !important;
}

.single-product .woocommerce-product-gallery__trigger {
  display: none !important;
}

.single-product .nt-product-gallery-tile {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--nt-line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.single-product .nt-product-gallery-tile:first-child {
  border-color: var(--nt-ink);
  box-shadow: inset 0 0 0 2px var(--nt-ink);
}

.single-product .nt-product-gallery-tile.is-active {
  border-color: var(--nt-ink);
  box-shadow: inset 0 0 0 2px var(--nt-ink);
}

.single-product .nt-product-gallery-tile:hover {
  transform: translateY(-1px);
  border-color: var(--nt-green);
  box-shadow: 0 10px 24px rgba(28, 49, 40, 0.1);
}

.single-product .nt-product-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CRO refresh: clinical UK/EU feel, clearer offers, better mobile buying path. */
.promo-main {
  background: linear-gradient(90deg, #0b4f5a 0%, #087a78 100%) !important;
}
.promo-urgent {
  background: #f4e3d4 !important;
  color: #17264d !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.promo-award {
  background: #17264d !important;
  color: rgba(255,255,255,0.86) !important;
}
.promo-seal {
  background: #c97841 !important;
  box-shadow: 0 4px 12px rgba(201, 120, 65, 0.28) !important;
}
.hero-section {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.72) 58%, rgba(238,247,245,0.72) 100%),
    linear-gradient(135deg, #fbf7f1 0%, #eef7f5 100%) !important;
}
.hero-copy h1 {
  color: #17264d !important;
  letter-spacing: 0 !important;
}
.eyebrow {
  color: #0b4f5a !important;
  letter-spacing: 0.08em !important;
}
.hero-lede {
  color: #435366 !important;
}
.btn-primary,
.single-product .single_add_to_cart_button.button {
  background: #c97841 !important;
  box-shadow: 0 10px 24px rgba(201, 120, 65, 0.26) !important;
}
.btn-primary:hover,
.single-product .single_add_to_cart_button.button:hover {
  background: #ad6332 !important;
}
.btn-secondary {
  color: #0b4f5a !important;
}
.trust-strip,
.story-band,
.footer-trust-bar {
  background: #0b4f5a !important;
}
.bundle-card-featured {
  border-color: #00847f !important;
  background: #f7fffd !important;
}
.bundle-badge-best,
.bundle-save-tag,
.ba-week {
  background: #c97841 !important;
  color: #fff !important;
}
.bundle-price-new,
.stat-num,
.nt-ba-stat-num {
  color: #0b4f5a !important;
}

.single-product .shop-band {
  background: #fbf7f1 !important;
}
.single-product .summary.entry-summary {
  background: #ffffff !important;
  border: 1px solid #d9e3e7 !important;
  border-radius: 8px !important;
  padding: 26px !important;
  box-shadow: 0 16px 46px rgba(23, 38, 77, 0.08) !important;
}
.single-product .nt-bb-eyebrow {
  color: #0b4f5a !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}
.single-product .product_title.entry-title,
.single-product .nt-product-title {
  color: #17264d !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  letter-spacing: 0 !important;
}
.single-product .nt-bb-rcount,
.single-product .nt-bb-breadcrumb,
.single-product .nt-bb-breadcrumb a,
.single-product .nt-bb-breadcrumb span {
  color: #435366 !important;
}
.single-product .nt-bb-breadcrumb {
  font-size: 13px !important;
}
.single-product .nt-bb-rcount {
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}
.single-product .nt-bb-price {
  color: #0b4f5a !important;
}
.single-product .nt-bb-shipping-badge {
  background: #eaf4f2 !important;
  color: #0b4f5a !important;
  border: 1px solid #b7d7d2 !important;
  border-radius: 999px !important;
}
.single-product .nt-promo-box {
  min-height: 0 !important;
  border-color: #d9e3e7 !important;
  border-radius: 8px 8px 0 0 !important;
}
.single-product .nt-promo-box__tag {
  width: 118px !important;
  background: #fbf7f1 !important;
}
.single-product .nt-sale-tag {
  background: #0b4f5a !important;
  border-radius: 4px !important;
  clip-path: none !important;
  transform: none !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  padding: 8px 10px !important;
}
.single-product .nt-promo-box__copy {
  align-items: flex-start !important;
  text-align: left !important;
  background: #17264d !important;
  padding: 20px 24px !important;
  font-size: 15px !important;
}
.single-product .nt-pb-headline {
  font-size: clamp(22px, 2vw, 28px) !important;
}
.single-product .nt-pb-price,
.single-product .nt-pb-save {
  color: #f4cf8a !important;
}
.single-product .nt-countdown-bar {
  background: #ffffff !important;
  border-color: #d9e3e7 !important;
  font-size: 14px !important;
}
.single-product .nt-cd-label {
  color: #0b4f5a !important;
}
.single-product .nt-cd-social {
  background: #eaf4f2 !important;
  color: #0b4f5a !important;
}
.single-product .nt-today-bar {
  background: #f4e3d4 !important;
  color: #17264d !important;
  border: 1px solid #d9e3e7 !important;
  border-top: 0 !important;
  border-radius: 0 0 8px 8px !important;
  font-size: 15px !important;
}
.single-product .nt-bb-bullets {
  background: #f8fbfa !important;
  border: 1px solid #d9e3e7 !important;
  border-radius: 8px !important;
  padding: 16px 18px !important;
}
.single-product .nt-bb-bullets li::before {
  color: #00847f !important;
}
.nt-buybox-reassurance {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 16px;
  border: 1px solid #d9e3e7;
  border-radius: 8px;
  background: #fbf7f1;
}
.nt-buybox-reassurance div {
  display: grid;
  gap: 2px;
}
.nt-buybox-reassurance strong {
  color: #17264d;
  font-size: 13px;
}
.nt-buybox-reassurance span {
  color: #647282;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 920px) {
  .promo-main {
    padding: 8px 14px !important;
  }
  .promo-seal {
    width: 42px !important;
    height: 42px !important;
    font-size: 7px !important;
  }
  .promo-main-copy strong {
    font-size: 13px !important;
  }
  .promo-main-copy > span {
    font-size: 11px !important;
  }
  .promo-award {
    display: none !important;
  }
  .hero-section {
    padding: 34px 0 42px !important;
  }
  .hero-copy h1 {
    font-size: clamp(32px, 9vw, 44px) !important;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .single-product .summary.entry-summary {
    padding: 20px !important;
  }
}

@media (max-width: 640px) {
  .promo-urgent {
    min-height: 0 !important;
    font-size: 11px !important;
  }
  .single-product form.cart {
    position: sticky !important;
    bottom: 0 !important;
    z-index: 30 !important;
    margin: 18px -20px 12px !important;
    padding: 12px !important;
    background: rgba(255,255,255,0.96) !important;
    border-top: 1px solid #d9e3e7 !important;
    box-shadow: 0 -10px 28px rgba(23, 38, 77, 0.12) !important;
  }
  .single-product form.cart .quantity input[type="number"] {
    width: 64px !important;
    height: 54px !important;
    font-size: 18px !important;
  }
  .single-product .single_add_to_cart_button.button {
    height: 54px !important;
    font-size: 16px !important;
    letter-spacing: 0.08em !important;
  }
  .single-product .nt-promo-box {
    display: grid !important;
  }
  .single-product .nt-promo-box__tag {
    width: 100% !important;
    padding: 12px !important;
  }
  .single-product .nt-promo-box__copy {
    padding: 18px !important;
  }
  .single-product .nt-countdown-bar {
    align-items: flex-start !important;
  }
}

@media (max-width: 980px) {
  .single-product .nt-product-media {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .single-product .nt-product-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-product .summary.entry-summary {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .single-product .nt-product-main-image {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
  }

  .single-product .woocommerce-product-gallery {
    height: 300px !important;
    max-height: 300px !important;
  }

  .single-product .woocommerce-product-gallery .flex-viewport,
  .single-product .woocommerce-product-gallery__wrapper,
  .single-product .woocommerce-product-gallery__image,
  .single-product .woocommerce-product-gallery__image a {
    max-height: 300px !important;
  }
}

/* Palette refresh: deeper clinical teal, navy and warm sand from the approved reference. */
:root {
  --nt-ink: #192348;
  --nt-muted: #657184;
  --nt-line: #dbe2e7;
  --nt-soft: #eef7f6;
  --nt-cream: #f1e5d6;
  --nt-green: #2f837d;
  --nt-green-dark: #1f5661;
  --nt-gold: #d98a45;
  --nt-gold-light: #f2e4d4;
  --nt-red: #bd5147;
  --nt-shadow: 0 20px 55px rgba(25, 35, 72, 0.12);
}

.brand,
.footer-brand {
  color: #1f5661 !important;
}

.site-header,
.header-top,
.primary-nav {
  background: #ffffff !important;
  border-color: #dbe2e7 !important;
}

.primary-nav .menu li a {
  color: #192348 !important;
}

.primary-nav .menu li a:hover {
  color: #1f5661 !important;
  background: #eef7f6 !important;
}

.menu-bundle > a {
  color: #1f5661 !important;
  background: #f2e4d4 !important;
  border-color: #dcc0a2 !important;
}

.menu-bundle > a:hover {
  background: #ead4bd !important;
}

.promo-main {
  background: linear-gradient(90deg, #1b5560 0%, #2f837d 100%) !important;
}

.promo-seal {
  background: #d98a45 !important;
  box-shadow: 0 4px 12px rgba(217, 138, 69, 0.3) !important;
}

.promo-urgent {
  background: #c97841 !important;
  color: #fff !important;
  font-weight: 700 !important;
}

.promo-award {
  background: #192348 !important;
  color: rgba(255,255,255,0.88) !important;
}

.hero-section {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.78) 58%, rgba(238,247,246,0.78) 100%),
    linear-gradient(135deg, #ffffff 0%, #eef7f6 100%) !important;
}

.hero-copy h1,
.section-heading h2,
.single-product .product_title.entry-title,
.single-product .nt-product-title {
  color: #192348 !important;
}

.eyebrow,
.single-product .nt-bb-eyebrow,
.bundle-price-new,
.stat-num,
.nt-ba-stat-num {
  color: #1f5661 !important;
}

.btn-primary,
.single-product .single_add_to_cart_button.button,
.bundle-badge-best,
.bundle-save-tag,
.ba-week {
  background: #d98a45 !important;
  color: #ffffff !important;
}

.btn-primary:hover,
.single-product .single_add_to_cart_button.button:hover {
  background: #c77835 !important;
}

.btn-secondary,
.single-product .nt-bb-rcount {
  color: #1f5661 !important;
}

.trust-strip,
.story-band,
.footer-trust-bar {
  background: #1f5661 !important;
}

.site-footer {
  background: #111936 !important;
}

.footer-bottom {
  background: #0b1024 !important;
}

.single-product .shop-band,
.muted,
.nt-bundle-upsell {
  background: #f8f5ef !important;
}

.single-product .summary.entry-summary,
.review-card,
.bundle-card,
.single-product .nt-product-gallery-tile,
.nt-wc-reviews #reviews,
.nt-wc-reviews .comment-respond {
  border-color: #dbe2e7 !important;
}

.bundle-card-featured,
.single-product .nt-bb-bullets,
.single-product .nt-bb-shipping-badge,
.single-product .nt-cd-social {
  background: #eef7f6 !important;
  border-color: #bcd8d4 !important;
}

.single-product .nt-promo-box__copy,
.single-product .nt-sale-tag,
.single-product .nt-today-bar strong {
  background: #192348 !important;
  color: #ffffff !important;
}

.single-product .nt-pb-price,
.single-product .nt-pb-save {
  color: #f3ce93 !important;
}

.single-product .nt-today-bar,
.nt-buybox-reassurance {
  background: #f2e4d4 !important;
  color: #192348 !important;
  border-color: #dbe2e7 !important;
}

.single-product .nt-bb-price,
.single-product .nt-cd-label,
.single-product .nt-bb-bullets li::before,
.review-verified {
  color: #1f5661 !important;
}

.review-stars,
.single-product .star-rating {
  color: #d98a45 !important;
}

.nt-wc-reviews {
  background: #ffffff !important;
}

.nt-wc-reviews #reviews {
  margin: 0;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid #dbe2e7;
  border-radius: 8px;
  background: #ffffff;
}

/* Product proof/review sections: match the wider reference layout and keep the page background clean. */
.single-product .shop-band,
.single-product .nt-experts-band,
.single-product .nt-wc-reviews {
  background: #ffffff !important;
}

.single-product .nt-experts-container,
.single-product .nt-reviews-container {
  width: min(1868px, calc(100vw - 136px)) !important;
  max-width: none !important;
}

/* Homepage hero image module: wide, admin-replaceable first visual. */
.hero-section {
  padding: clamp(44px, 6vw, 78px) 0 clamp(46px, 6.5vw, 86px) !important;
}

.hero-grid {
  width: min(1720px, calc(100% - 96px)) !important;
  grid-template-columns: minmax(460px, 0.92fr) minmax(620px, 1.08fr) !important;
  gap: clamp(54px, 6vw, 108px) !important;
}

.hero-copy h1 {
  max-width: 760px !important;
  font-size: clamp(54px, 5.15vw, 94px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.hero-lede {
  max-width: 640px !important;
  margin-top: 24px !important;
  font-size: clamp(19px, 1.35vw, 26px) !important;
  line-height: 1.5 !important;
}

.hero-points {
  gap: 14px !important;
  margin-top: 28px !important;
  margin-bottom: 30px !important;
  font-size: clamp(16px, 1.05vw, 21px) !important;
}

.hero-points li {
  padding-left: 34px !important;
}

.hero-points li::before {
  top: 0.72em !important;
  width: 12px !important;
  height: 12px !important;
  background: #2f837d !important;
}

.hero-actions .btn {
  min-height: 58px !important;
  padding-inline: 30px !important;
  border-radius: 8px !important;
  font-size: 16px !important;
}

.hero-media {
  justify-self: stretch !important;
  width: 100% !important;
}

.hero-media img {
  width: 100% !important;
  aspect-ratio: 2.4 / 1 !important;
  min-height: 390px !important;
  max-height: 520px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 18px !important;
  box-shadow: 0 22px 56px rgba(25, 35, 72, 0.14) !important;
}

@media (max-width: 1180px) {
  .hero-grid {
    width: min(1180px, calc(100% - 44px)) !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .hero-media img {
    min-height: 320px !important;
    max-height: none !important;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 30px !important;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 11vw, 48px) !important;
  }

  .hero-lede {
    font-size: 17px !important;
  }

  .hero-points {
    font-size: 15px !important;
  }

  .hero-media img {
    aspect-ratio: 1.45 / 1 !important;
    min-height: 250px !important;
    border-radius: 12px !important;
  }
}

.nt-product-detail-copy {
  max-width: 920px;
  margin: 0 auto;
  color: var(--nt-ink);
  font-size: 17px;
  line-height: 1.75;
}

.nt-product-detail-copy h2,
.nt-product-detail-copy h3,
.nt-product-detail-copy h4 {
  color: var(--nt-green-dark);
  line-height: 1.2;
  margin: 30px 0 12px;
}

.nt-product-detail-copy h2:first-child,
.nt-product-detail-copy h3:first-child,
.nt-product-detail-copy h4:first-child {
  margin-top: 0;
}

.nt-product-detail-copy p {
  margin: 0 0 16px;
}

.nt-product-detail-copy ul,
.nt-product-detail-copy ol {
  margin: 0 0 20px 22px;
  padding: 0;
}

.nt-product-detail-copy li {
  margin-bottom: 8px;
}

/* Product sharing and reference-style details tabs. */
.single-product .nt-product-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--nt-line);
}

.single-product .nt-product-share__label {
  margin-right: 2px;
  color: var(--nt-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-product .nt-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #dbe2e7;
  border-radius: 2px;
  background: #ffffff;
  color: #192348;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.single-product .nt-share-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #1f5661;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.single-product .nt-share-pinterest span {
  background: #bd5147;
}

.single-product .nt-share-btn:hover {
  border-color: #1f5661;
  background: #eef7f6;
  transform: translateY(-1px);
}

.nt-product-tabs-band {
  margin-top: 0;
  padding: 42px 0 52px !important;
  background: #ffffff;
}

.nt-product-tabs-container {
  width: min(1720px, calc(100% - 64px));
}

.nt-product-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  border-bottom: 8px solid #dbe2e7;
}

.nt-product-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #657184;
  font: inherit;
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  text-align: center;
}

.nt-product-tab.is-active {
  border-radius: 26px 26px 0 0;
  background: #f7e7e2;
  color: #192348;
}

.nt-product-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 8px;
  border-radius: 999px;
  background: #1f5661;
}

.nt-product-tab-link:hover {
  color: #192348;
}

.nt-product-tab-panels {
  min-height: 410px;
  padding: clamp(42px, 5vw, 78px) clamp(28px, 5vw, 72px);
  background: #fbf7f1;
}

.nt-product-tab-panel[hidden] {
  display: none !important;
}

.nt-product-tab-panel {
  text-align: center;
}

.nt-product-tab-panel .eyebrow {
  margin-bottom: 18px;
}

.nt-product-tab-panel h2 {
  max-width: 900px;
  margin: 0 auto 42px;
  color: #192348;
  font-size: clamp(42px, 4vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.nt-detail-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  max-width: 1160px;
  margin: 0 auto;
}

.nt-detail-card-grid article {
  min-height: 210px;
  padding: 28px 24px 30px;
  border: 1px solid #dbe2e7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(25, 35, 72, 0.06);
  text-align: center;
}

.nt-detail-card-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #1f5661;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.nt-detail-card-grid h3 {
  margin: 0 0 10px;
  color: #192348;
  font-size: 20px;
  line-height: 1.2;
}

.nt-detail-card-grid p {
  margin: 0;
  color: #657184;
  font-size: 15px;
  line-height: 1.6;
}

.nt-product-video-frame {
  width: min(980px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #111936;
  box-shadow: 0 18px 48px rgba(25, 35, 72, 0.14);
}

.nt-product-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.nt-product-video-placeholder {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid #dbe2e7;
  border-radius: 8px;
  background: #ffffff;
  text-align: left;
}

.nt-product-video-placeholder img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #fbf7f1;
}

.nt-product-video-placeholder strong {
  display: block;
  margin-bottom: 8px;
  color: #192348;
  font-size: 24px;
}

.nt-product-video-placeholder p {
  margin: 0;
  color: #657184;
  font-size: 16px;
  line-height: 1.6;
}

.single-product .shop-band {
  background: #ffffff !important;
}

@media (max-width: 980px) {
  .nt-product-tabs-container {
    width: min(720px, calc(100% - 32px));
  }

  .nt-product-tabs {
    grid-template-columns: 1fr;
    border-bottom-width: 0;
    gap: 8px;
  }

  .nt-product-tab,
  .nt-product-tab.is-active {
    min-height: 52px;
    border: 1px solid #dbe2e7;
    border-radius: 8px;
    font-size: 20px;
  }

  .nt-product-tab.is-active::after {
    display: none;
  }

  .nt-product-tab-panels {
    margin-top: 14px;
    padding: 28px 18px;
  }

  .nt-product-tab-panel h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .nt-detail-card-grid,
  .nt-product-video-placeholder {
    grid-template-columns: 1fr;
  }
}

/* Structured Blissy-style proof sections: HTML/CSS, not full-section artwork images. */
.single-product .nt-proof-band {
  background: #ffffff !important;
}

.single-product .nt-clinical-results-band {
  padding: clamp(72px, 7vw, 126px) 0 clamp(44px, 4.8vw, 84px) !important;
}

.single-product .nt-clinical-results-container,
.single-product .nt-brilliant-container {
  width: min(1778px, calc(100vw - 136px)) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.single-product .nt-clinical-results-layout,
.single-product .nt-brilliant-layout {
  display: grid;
  grid-template-columns: minmax(420px, .85fr) minmax(560px, 1fr);
  gap: clamp(48px, 5vw, 96px);
  align-items: center;
}

.single-product .nt-clinical-copy h2,
.single-product .nt-brilliant-copy h2 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--nt-ink);
  font-size: clamp(42px, 3.8vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.single-product .nt-clinical-lede,
.single-product .nt-brilliant-copy p {
  max-width: 820px;
  margin: 0 0 28px;
  color: #1d1e21;
  font-size: clamp(21px, 1.55vw, 32px);
  line-height: 1.36;
}

.single-product .nt-check-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-product .nt-check-list li {
  position: relative;
  padding-left: 66px;
  color: #1d1e21;
  font-size: clamp(18px, 1.25vw, 25px);
  line-height: 1.32;
}

.single-product .nt-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -6px;
  color: #000000;
  font-size: clamp(34px, 2.3vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.single-product .nt-check-list strong {
  font-weight: 900;
}

.single-product .nt-check-list span {
  font-weight: 500;
}

.single-product .nt-clinical-diagram {
  position: relative;
  min-height: clamp(430px, 30vw, 560px);
  margin: 0;
  overflow: hidden;
  background: #f4e2d9;
  color: #263044;
}

.single-product .nt-clinical-diagram figcaption {
  position: absolute;
  z-index: 4;
  top: 28px;
  left: 28px;
  max-width: 320px;
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.single-product .nt-clinical-diagram figcaption strong {
  display: block;
  color: var(--nt-ink);
  font-size: clamp(20px, 1.35vw, 28px);
  font-weight: 900;
  letter-spacing: .04em;
}

.single-product .nt-clinical-diagram figcaption span {
  display: block;
  margin-top: 4px;
  color: #4f5968;
}

.single-product .nt-nail-diagram-panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-product .nt-nail-diagram-panel {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-right: 4px solid rgba(255, 255, 255, .86);
}

.single-product .nt-nail-diagram-panel:last-child {
  border-right: 0;
}

.single-product .nt-nail-surface {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 49%;
  height: 8px;
  background: #95d7df;
  border-top: 4px solid #ffffff;
  border-bottom: 3px solid rgba(33, 92, 102, .4);
  box-shadow: 0 -16px 0 rgba(216, 161, 140, .42);
}

.single-product .nt-nail-growth {
  position: absolute;
  left: -4%;
  right: -4%;
  top: 52%;
  height: 118px;
  background: #e5c1b7;
}

.single-product .nt-nail-growth::before {
  content: "";
  position: absolute;
  inset: -16px 0 auto;
  height: 34px;
  border-radius: 50%;
  background: rgba(226, 181, 164, .72);
}

.single-product .nt-nail-bed {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0;
  height: 130px;
  background: #9edce8;
}

.single-product .nt-nail-after .nt-nail-bed {
  background: #80d0e1;
}

.single-product .nt-nail-shield {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 44%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, #b8edf5, #ffffff);
  box-shadow: 0 0 24px rgba(128, 208, 225, .55);
}

.single-product .nt-nail-path {
  position: absolute;
  width: 190px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9b6fec 0 14%, #46cde2 14% 28%, #9b6fec 28% 42%, #46cde2 42% 56%, #9b6fec 56% 70%, #46cde2 70% 84%, #9b6fec 84% 100%);
  opacity: .95;
  transform: rotate(43deg);
}

.single-product .nt-path-one {
  left: 3%;
  top: 58%;
}

.single-product .nt-path-two {
  left: 42%;
  top: 61%;
}

.single-product .nt-nail-particles {
  position: absolute;
  left: 62%;
  top: 58%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #9b6fec;
  box-shadow: -38px 26px 0 #46cde2, 50px 34px 0 #9b6fec, -112px 10px 0 #46cde2;
}

.single-product .nt-nail-diagram-panel em {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  color: #5d6470;
  font-size: 16px;
  font-style: normal;
  text-align: center;
}

.single-product .nt-clinical-diagram b {
  position: absolute;
  right: 26px;
  bottom: 8px;
  color: #6bc5dc;
  font-size: clamp(34px, 3vw, 58px);
  line-height: 1;
  letter-spacing: .05em;
}

.single-product .nt-clinical-icon-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 42px);
  margin-top: clamp(42px, 4vw, 70px);
  padding-top: 34px;
  border-top: 1px solid #dbe2e7;
}

.single-product .nt-clinical-icon-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
}

.single-product .nt-clinical-icon-item span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 3px solid #111111;
  border-radius: 999px;
  color: #111111;
  font-size: 22px;
  font-weight: 900;
}

.single-product .nt-clinical-icon-item strong {
  color: #222222;
  font-size: clamp(18px, 1.1vw, 23px);
  line-height: 1.1;
}

.single-product .nt-clinical-icon-item em {
  margin-top: 5px;
  color: #5e6773;
  font-size: clamp(15px, .9vw, 19px);
  font-style: normal;
  line-height: 1.2;
}

.single-product .nt-brilliant-band {
  padding: clamp(56px, 6vw, 108px) 0 clamp(58px, 6.5vw, 112px) !important;
}

.single-product .nt-before-after-nail {
  margin: 0;
}

.single-product .nt-before-after-frame {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(500px, 41vw, 710px);
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #f2e7e1;
  box-shadow: 0 18px 52px rgba(25, 35, 72, .08);
}

.single-product .nt-before-after-frame::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 5px;
  background: #ffffff;
  transform: translateX(-50%);
}

.single-product .nt-before-after-frame button {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 55%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 38px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.single-product .nt-nail-photo-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.single-product .nt-nail-photo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: none;
}

.single-product .nt-before-after-labels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(0, 0, 0, .68);
}

.single-product .nt-before-after-labels strong {
  display: block;
  padding: 18px 10px;
  color: #ffffff;
  font-size: clamp(34px, 3.1vw, 58px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.single-product .nt-brilliant-copy {
  align-self: start;
}

.single-product .nt-brilliant-copy p {
  max-width: 900px;
  margin-bottom: 18px;
  color: #414141;
  font-weight: 400;
  line-height: 1.58;
}

.single-product .nt-brilliant-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 112px);
  margin-top: clamp(42px, 5vw, 86px);
  text-align: center;
}

.single-product .nt-brilliant-icons article {
  min-width: 0;
}

.single-product .nt-brilliant-icons span {
  display: inline-flex;
  width: clamp(112px, 8.2vw, 160px);
  height: clamp(112px, 8.2vw, 160px);
  margin-bottom: 28px;
  border-radius: 999px;
  background: #f7e7e2;
}

.single-product .nt-brilliant-icons span::before {
  display: none;
}

.single-product .nt-brilliant-icons h3 {
  margin: 0 0 12px;
  color: #111111;
  font-size: clamp(22px, 1.55vw, 32px);
  font-weight: 900;
  line-height: 1.1;
}

.single-product .nt-brilliant-icons p {
  max-width: 260px;
  margin: 0 auto;
  color: #4b4b4b;
  font-size: clamp(17px, 1.1vw, 22px);
  line-height: 1.4;
}

@media (max-width: 1180px) {
  .single-product .nt-clinical-results-container,
  .single-product .nt-brilliant-container {
    width: min(960px, calc(100vw - 40px)) !important;
  }

  .single-product .nt-clinical-results-layout,
  .single-product .nt-brilliant-layout {
    grid-template-columns: 1fr;
  }

  .single-product .nt-clinical-icon-row,
  .single-product .nt-brilliant-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .single-product .nt-clinical-results-band,
  .single-product .nt-brilliant-band {
    padding: 48px 0 56px !important;
  }

  .single-product .nt-clinical-results-container,
  .single-product .nt-brilliant-container {
    width: min(100vw - 28px, 560px) !important;
  }

  .single-product .nt-check-list li {
    padding-left: 42px;
  }

  .single-product .nt-clinical-diagram,
  .single-product .nt-before-after-frame {
    min-height: 420px;
  }

  .single-product .nt-clinical-icon-row,
  .single-product .nt-brilliant-icons {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .single-product .nt-clinical-icon-item {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .single-product .nt-clinical-icon-item span {
    width: 60px;
    height: 60px;
  }

  .single-product .nt-brilliant-icons article {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    column-gap: 18px;
    align-items: center;
  }

  .single-product .nt-brilliant-icons span {
    grid-row: span 2;
    width: 86px;
    height: 86px;
    margin: 0;
  }

  .single-product .nt-brilliant-icons p {
    margin: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   BLISSY CONVERGENCE v4 — 2026-05-10
   Open buy box · serif title compact · tagline · gray image bg · teal ATC
   ═══════════════════════════════════════════════════════════════════ */

/* Logo: lighter weight, more premium */
.brand { font-weight: 600 !important; letter-spacing: -1px !important; }

/* Full-width italic tagline bar */
.nt-product-tagline-bar {
  padding: 16px 24px 4px;
  text-align: center;
  background: #faf8f5;
}
.nt-product-tagline {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 400;
  color: #444;
  line-height: 1.45;
}

/* Product page background: warm off-white */
.single-product .shop-band {
  background: #faf8f5 !important;
  padding-top: 0 !important;
}
.single-product div.product {
  padding-top: 28px !important;
}

/* Image container: warm gray background, no shadow (Blissy) */
.single-product .nt-product-main-image {
  background: #f4f3ee !important;
  box-shadow: none !important;
  border-radius: 8px !important;
}
/* Show full product, no cropping */
.single-product .nt-product-main-image img {
  object-fit: contain !important;
  padding: 24px !important;
}

/* Badge: position anchor on media column */
.single-product .nt-product-media {
  position: relative !important;
}
.nt-image-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #c63030;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 13px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}

/* Open buy box: remove card border and shadow */
.single-product .summary.entry-summary {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 4px 0 0 !important;
}

/* Eyebrow: compact italic brand descriptor */
.single-product .nt-bb-eyebrow {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #666 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-style: italic !important;
  margin: 0 0 4px !important;
}

/* Product title: compact serif, fits in 2 lines max */
.single-product .product_title.entry-title,
.single-product .nt-product-title {
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(22px, 1.85vw, 30px) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #17264d !important;
  letter-spacing: 0 !important;
  margin: 0 0 10px !important;
}

/* Stars: compact 16px */
.single-product .nt-bb-rating {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin: 0 0 6px !important;
  font-size: 14px !important;
}
.single-product .nt-bb-stars svg {
  width: 16px !important;
  height: 16px !important;
}
.single-product .nt-bb-rcount {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #435366 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}

/* Breadcrumb: compact */
.single-product .nt-bb-breadcrumb {
  font-size: 13px !important;
  color: #666 !important;
  margin: 0 0 14px !important;
}
.single-product .nt-bb-breadcrumb a,
.single-product .nt-bb-breadcrumb span {
  font-size: 13px !important;
  color: #666 !important;
}

/* Price: prominent green */
.single-product .nt-bb-price {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #2f7a3e !important;
}

/* Shipping badge: solid green fill (Blissy style) */
.single-product .nt-bb-shipping-badge {
  background: #2f7a3e !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 4px 12px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

/* Stock line */
.single-product .nt-bb-stock {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #2f7a3e !important;
  margin: 0 0 12px !important;
}

/* Add to cart: dark teal (not orange) */
.single-product .single_add_to_cart_button.button {
  background: #1d6955 !important;
  box-shadow: 0 4px 14px rgba(29, 105, 85, 0.32) !important;
  letter-spacing: 1px !important;
  font-size: 15px !important;
}
.single-product .single_add_to_cart_button.button:hover {
  background: #155545 !important;
}

/* Today bar: solid green like Blissy's "TODAY ONLY" bar */
.single-product .nt-today-bar {
  background: #2a7a4f !important;
  color: #fff !important;
  border: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
}

/* Mobile title scale */
@media (max-width: 980px) {
  .single-product .product_title.entry-title,
  .single-product .nt-product-title {
    font-size: clamp(24px, 7vw, 34px) !important;
  }
}

/* ── Container widths: match Blissy's ~130px side margins ── */
.single-product .nt-product-tabs-container,
.single-product .nt-experts-container,
.single-product .nt-clinical-results-container,
.single-product .nt-reference-container,
.single-product .nt-brilliant-container {
  width: min(1210px, calc(100% - 260px)) !important;
  max-width: none !important;
}

/* ── Details tab panel: tighter heading, warmer cream bg ── */
.single-product .nt-product-tab-panels {
  background: #faf0e8 !important;
}
.single-product .nt-product-tab-panel h2 {
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(28px, 2.4vw, 42px) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.15 !important;
}

/* ── Expert section: compact heading to match Blissy ── */
.single-product .nt-experts-heading {
  font-size: clamp(16px, 1.4vw, 22px) !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  margin-bottom: 28px !important;
}

/* ── Expert card: photo fills card, quote readable ── */
.single-product .nt-expert-card img {
  border-radius: 4px !important;
  margin-bottom: 20px !important;
}
.single-product .nt-expert-card blockquote {
  font-size: clamp(15px, 1.1vw, 18px) !important;
  line-height: 1.55 !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  color: #333 !important;
}
.single-product .nt-expert-card h3 {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 0 0 4px !important;
  color: #192348 !important;
}
.single-product .nt-expert-card p {
  font-size: 13px !important;
  color: #666 !important;
  margin: 0 !important;
}

/* ── WooCommerce native tabs/description: hide to avoid duplication ── */
.single-product .woocommerce-tabs {
  display: none !important;
}

/* ── Editorial quote band (Blissy BYRDIE-style press pull-quote) ── */
.single-product .nt-editorial-quote-band {
  padding: var(--blissy-section-py-md) 0;
  background: var(--blissy-bg-page);
}
.single-product .nt-editorial-quote-container {
  width: min(var(--blissy-container-max), calc(100% - calc(var(--blissy-container-gutter) * 2))) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
.single-product .nt-editorial-quote-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--blissy-gap-xl);
}
.single-product .nt-editorial-outlet {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: var(--blissy-outlet-circle-size);
  height: var(--blissy-outlet-circle-size);
  border-radius: var(--blissy-radius-pill);
  background: var(--blissy-bg-pink);
  color: var(--blissy-color-ink);
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-base);
  font-weight: var(--blissy-weight-bold);
  text-align: center;
  text-transform: uppercase;
  line-height: var(--blissy-leading-snug);
  letter-spacing: var(--blissy-tracking-cta);
}
.single-product .nt-editorial-quote {
  margin: 0;
  padding: 0;
  border: 0;
}
.single-product .nt-eq-headline {
  margin: 0 0 var(--blissy-gap-md);
  font-family: var(--blissy-font-expert);
  font-size: var(--blissy-text-3xl);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-black);
  line-height: var(--blissy-leading-relaxed);
  letter-spacing: var(--blissy-tracking-normal);
}
.single-product .nt-eq-excerpt {
  margin: 0;
  font-family: var(--blissy-font-expert);
  font-size: var(--blissy-text-xl);
  font-weight: var(--blissy-weight-regular);
  color: var(--blissy-color-black);
  line-height: var(--blissy-leading-relaxed);
}

/* ── Brilliant band ── */
.single-product .nt-brilliant-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr) !important;
  gap: var(--blissy-gap-xl) !important;
  align-items: start !important;
}
.single-product .nt-before-after-frame {
  min-height: clamp(280px, 22vw, 380px) !important;
}
.single-product .nt-before-after-labels strong {
  font-size: var(--blissy-text-sm) !important;
  padding: var(--blissy-gap-xs) var(--blissy-gap-xs) !important;
  font-weight: var(--blissy-weight-bold) !important;
}
.single-product .nt-before-after-frame button {
  width: 52px !important;
  height: 52px !important;
  font-size: var(--blissy-text-lg) !important;
}
.single-product .nt-brilliant-copy h2 {
  font-family: var(--blissy-font-display) !important;
  font-size: var(--blissy-text-3xl) !important;
  font-weight: var(--blissy-weight-regular) !important;
  letter-spacing: var(--blissy-tracking-display-sm) !important;
  line-height: var(--blissy-leading-heading) !important;
  color: var(--blissy-color-ink) !important;
  text-transform: uppercase !important;
  margin-bottom: var(--blissy-gap-md) !important;
}
.single-product .nt-brilliant-copy p {
  font-family: var(--blissy-font-expert) !important;
  font-size: var(--blissy-text-base) !important;
  font-weight: var(--blissy-weight-light) !important;
  color: var(--blissy-color-black) !important;
  line-height: var(--blissy-leading-loose) !important;
  margin-bottom: var(--blissy-gap-md) !important;
}
/* ── Brilliant icons ── */
.single-product .nt-brilliant-icons {
  gap: var(--blissy-gap-sm) !important;
  margin-top: var(--blissy-gap-lg) !important;
}
.single-product .nt-brilliant-icons span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--blissy-icon-size) !important;
  height: var(--blissy-icon-size) !important;
  margin-bottom: var(--blissy-gap-lg) !important;
  background: var(--blissy-bg-pink) !important;
  border-radius: var(--blissy-radius-pill) !important;
  color: var(--blissy-color-navy) !important;
}
.single-product .nt-brilliant-icons h3 {
  font-family: var(--blissy-font-expert) !important;
  font-size: var(--blissy-text-base) !important;
  font-weight: var(--blissy-weight-medium) !important;
  color: var(--blissy-color-black) !important;
  margin-bottom: var(--blissy-gap-xs) !important;
}
.single-product .nt-brilliant-icons p {
  font-family: var(--blissy-font-expert) !important;
  font-size: var(--blissy-text-xs) !important;
  font-weight: var(--blissy-weight-light) !important;
  color: var(--blissy-text-muted) !important;
}

/* ── Clinical results: scale down to match Blissy proportions ── */
.single-product .nt-clinical-copy h2 {
  font-size: clamp(26px, 2.4vw, 40px) !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  line-height: 1.1 !important;
  margin-bottom: 16px !important;
}
.single-product .nt-clinical-lede {
  font-size: clamp(14px, .95vw, 17px) !important;
  line-height: 1.5 !important;
  margin-bottom: 18px !important;
  color: #4f5968 !important;
}
.single-product .nt-clinical-bullets .nt-check-list li {
  font-size: clamp(13px, .85vw, 15px) !important;
  padding-left: 36px !important;
  gap: 0 !important;
}
.single-product .nt-clinical-bullets .nt-check-list li::before {
  font-size: clamp(16px, 1.2vw, 20px) !important;
  top: 0 !important;
  font-weight: 700 !important;
}
.single-product .nt-clinical-bullets .nt-check-list strong {
  font-weight: 600 !important;
}

/* ── Icon circles: thin border + SVG centred ── */
.single-product .nt-clinical-icon-item span {
  width: 60px !important;
  height: 60px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 999px !important;
  color: #162950 !important;
  font-size: 0 !important;
}
.single-product .nt-clinical-icon-item {
  grid-template-columns: 60px minmax(0,1fr) !important;
  column-gap: 14px !important;
}
.single-product .nt-clinical-icon-item strong {
  font-size: clamp(13px, .85vw, 15px) !important;
}
.single-product .nt-clinical-icon-item em {
  font-size: clamp(11px, .75vw, 13px) !important;
}

/* ══════════════════════════════════════════════════════════
   REVIEWS TEASER BAND  (nt-reviews-band)
   Source: Blissy "HERE'S WHAT BLISSY DREAMERS SAY.." section
   All values via var(--blissy-*) only
══════════════════════════════════════════════════════════ */
.single-product .nt-reviews-band {
  background: var(--blissy-bg-page);
  padding: var(--blissy-section-py-md) 0;
}
.single-product .nt-reviews-teaser-container {
  width: min(var(--blissy-container-max), calc(100% - calc(var(--blissy-container-gutter) * 2))) !important;
}

/* Header row */
.single-product .nt-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--blissy-gap-lg);
}
.single-product .nt-reviews-heading {
  font-family: var(--blissy-font-display);
  font-size: var(--blissy-text-4xl);
  font-weight: var(--blissy-weight-regular);
  letter-spacing: var(--blissy-tracking-display-lg);
  color: var(--blissy-color-ink);
  text-transform: uppercase;
  line-height: var(--blissy-leading-tight);
  margin: 0;
}
.single-product .nt-reviews-view-all {
  display: inline-block;
  background: var(--blissy-btn-secondary-bg);
  color: var(--blissy-btn-secondary-color);
  font-family: var(--blissy-btn-secondary-font);
  font-size: var(--blissy-text-xl);
  font-weight: var(--blissy-weight-regular);
  border-radius: var(--blissy-btn-secondary-radius);
  padding: var(--blissy-btn-secondary-padding);
  letter-spacing: var(--blissy-tracking-cta);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.single-product .nt-reviews-view-all:hover {
  background: var(--blissy-color-cta-hover);
  color: var(--blissy-text-on-cta);
}

/* Cards row */
.single-product .nt-reviews-cards {
  display: flex;
  flex-direction: row;
  gap: var(--blissy-gap-md);
  align-items: stretch;
}

/* Pink stats card */
.single-product .nt-reviews-stats-card {
  background: var(--blissy-bg-pink);
  padding: var(--blissy-gap-sm) var(--blissy-gap-lg);
  filter: var(--blissy-shadow-card);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--blissy-gap-sm);
}
.single-product .nt-stats-label {
  font-family: var(--blissy-font-expert);
  color: var(--blissy-color-navy);
  margin: 0;
  line-height: var(--blissy-leading-relaxed);
}
.single-product .nt-stats-number {
  font-size: var(--blissy-text-xl);
  font-weight: var(--blissy-weight-light);
  letter-spacing: var(--blissy-tracking-cta);
  display: block;
}
.single-product .nt-stats-highlight {
  font-size: var(--blissy-text-3xl);
  font-weight: var(--blissy-weight-bold);
  letter-spacing: var(--blissy-tracking-display-sm);
  display: block;
}
.single-product .nt-stats-stars {
  display: flex;
  gap: var(--blissy-gap-xs);
  color: var(--blissy-color-star);
}

/* White review cards */
.single-product .nt-review-card {
  background: var(--blissy-bg-page);
  padding: var(--blissy-gap-sm);
  filter: var(--blissy-shadow-card);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.single-product .nt-review-title-wrap {
  margin-bottom: var(--blissy-gap-sm);
}
.single-product .nt-review-title {
  background: var(--blissy-bg-light-blue);
  font-family: var(--blissy-font-expert);
  font-size: var(--blissy-text-xl);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-black);
  line-height: var(--blissy-leading-snug);
}
.single-product .nt-review-body {
  font-family: var(--blissy-font-expert);
  font-size: var(--blissy-text-base);
  font-weight: var(--blissy-weight-regular);
  color: var(--blissy-color-black);
  line-height: var(--blissy-leading-loose);
  margin-bottom: var(--blissy-gap-sm);
  flex: 1;
}
.single-product .nt-review-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--blissy-gap-xs);
}
.single-product .nt-review-stars {
  display: flex;
  gap: var(--blissy-gap-xs);
  color: var(--blissy-color-star);
}
.single-product .nt-reviewer-name {
  font-family: var(--blissy-font-expert);
  font-size: var(--blissy-text-base);
  font-weight: var(--blissy-weight-regular);
  color: var(--blissy-color-black);
  line-height: var(--blissy-leading-loose);
  margin-left: auto;
}

/* Mobile: stack cards */
@media (max-width: 767px) {
  .single-product .nt-reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--blissy-gap-sm);
  }
  .single-product .nt-reviews-heading {
    font-size: var(--blissy-text-3xl);
  }
  .single-product .nt-reviews-cards {
    flex-direction: column;
  }
}

/* ══════════════════════════════════════════════════════════
   COMPARISON TABLE BAND  (nt-comparison-band)
   Source: Blissy "The Difference is Clear"
══════════════════════════════════════════════════════════ */
.single-product .nt-comparison-band {
  background: var(--blissy-bg-page);
  padding: var(--blissy-section-py-md) 0;
}
.single-product .nt-comparison-container {
  width: min(var(--blissy-container-max), calc(100% - calc(var(--blissy-container-gutter) * 2))) !important;
}
.single-product .nt-comparison-heading {
  font-family: var(--blissy-font-expert);
  font-size: var(--blissy-text-6xl);
  font-weight: var(--blissy-weight-regular);
  color: var(--blissy-color-black);
  letter-spacing: var(--blissy-tracking-display-sm);
  line-height: var(--blissy-leading-tight);
  text-align: center;
  margin: 0 0 var(--blissy-gap-md);
}
.single-product .nt-comparison-choose {
  text-align: center;
  margin-bottom: var(--blissy-gap-lg);
}
.single-product .nt-comparison-choose span {
  display: inline-block;
  background: var(--blissy-bg-pink);
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-sm);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-ink);
  letter-spacing: var(--blissy-tracking-cta);
  text-transform: uppercase;
  padding: var(--blissy-gap-xs) var(--blissy-gap-md);
}

/* Table wrap */
.single-product .nt-comparison-table-wrap {
  overflow-x: auto;
}
.single-product .nt-comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--blissy-color-divider);
}

/* Column widths — proportional to Blissy 44/27/15.5/13.5 */
.single-product .nt-cmp-th-feature,
.single-product .nt-cmp-feature   { width: 44%; }
.single-product .nt-cmp-th-brand,
.single-product .nt-cmp-td-brand  { width: 27%; }
.single-product .nt-cmp-th-comp,
.single-product .nt-cmp-td-comp   { width: 14.5%; }

/* Header row */
.single-product .nt-comparison-table thead tr {
  border-bottom: 1px solid var(--blissy-color-divider);
}
.single-product .nt-comparison-table th {
  padding: var(--blissy-gap-md) var(--blissy-gap-sm);
  font-family: var(--blissy-font-expert);
  font-size: var(--blissy-text-xl);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-black);
  text-align: center;
}
.single-product .nt-cmp-th-brand {
  background: var(--blissy-bg-light-blue-50);
}
.single-product .nt-cmp-brand-name {
  font-family: var(--blissy-font-expert);
  font-size: var(--blissy-text-xl);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-navy);
}
.single-product .nt-cmp-th-brand img {
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Data rows */
.single-product .nt-comparison-table td {
  padding: var(--blissy-gap-sm) var(--blissy-gap-sm);
  border-bottom: 1px solid var(--blissy-color-divider);
  text-align: center;
  vertical-align: middle;
}
.single-product .nt-cmp-row-alt {
  background: var(--blissy-bg-ivory);
}
.single-product .nt-cmp-feature {
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-xl);
  font-weight: var(--blissy-weight-regular);
  color: var(--blissy-color-black);
  text-align: left;
  padding-left: var(--blissy-gap-md);
}
.single-product .nt-cmp-td-brand {
  background: var(--blissy-bg-light-blue-50);
}

/* Checkmark badge */
.single-product .nt-cmp-check {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blissy-color-navy);
}

/* Cross */
.single-product .nt-cmp-cross {
  font-size: var(--blissy-text-xl);
  color: var(--blissy-text-muted);
  line-height: 1;
}

/* Mobile */
@media (max-width: 767px) {
  .single-product .nt-comparison-heading {
    font-size: var(--blissy-text-3xl);
  }
  .single-product .nt-cmp-feature {
    font-size: var(--blissy-text-sm);
    padding-left: var(--blissy-gap-sm);
  }
  .single-product .nt-comparison-table th,
  .single-product .nt-comparison-table td {
    font-size: var(--blissy-text-sm);
    padding: var(--blissy-gap-xs);
  }
}

/* ══════════════════════════════════════════════════════════
   HERO BANNER BAND  (nt-hero-banner-band)
   Full-width lifestyle image + label top-right + heading bottom-left
   Source: Blissy "Invest in Better Sleep Today" banner
══════════════════════════════════════════════════════════ */
.single-product .nt-hero-banner-band {
  width: 100%;
  overflow: hidden;
}
.single-product .nt-hero-banner-inner {
  position: relative;
  background-color: var(--blissy-bg-light-blue);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--blissy-section-py-top-lg) var(--blissy-container-gutter) var(--blissy-section-py-bottom-lg);
}
.single-product .nt-hero-label {
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-sm);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-text-on-dark);
  letter-spacing: var(--blissy-tracking-cta);
  text-transform: uppercase;
  align-self: flex-end;
  margin: 0;
}
.single-product .nt-hero-heading-wrap {
  align-self: flex-start;
  margin-top: var(--blissy-gap-lg);
}
.single-product .nt-hero-heading {
  font-family: var(--blissy-font-expert);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-black);
  letter-spacing: var(--blissy-tracking-cta);
  line-height: var(--blissy-leading-snug);
  margin: 0;
}
.single-product .nt-hero-heading span {
  background: var(--blissy-bg-light-blue);
  font-size: var(--blissy-text-5xl);
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 var(--blissy-gap-xs);
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIAL BAND  (nt-testimonial-band)
   Polaroid photo left + highlighted quote right
   Source: Blissy "Blissy has been blissful to say the least.." section
══════════════════════════════════════════════════════════ */
.single-product .nt-testimonial-band {
  background: var(--blissy-bg-page);
  padding: var(--blissy-section-py-md) 0;
}
.single-product .nt-testimonial-container {
  width: min(var(--blissy-container-max), calc(100% - calc(var(--blissy-container-gutter) * 2))) !important;
}
.single-product .nt-testimonial-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(var(--blissy-gap-xl) * 2);
}

/* Photo column — equal flex, centres the polaroid card */
.single-product .nt-testimonial-photo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Polaroid card — centred inside the column */
.single-product .nt-testimonial-polaroid {
  max-width: calc(var(--blissy-container-max) * 0.263);
  width: 100%;
  background: var(--blissy-bg-page);
  padding: var(--blissy-gap-sm);
  transform: rotate(var(--blissy-photo-rotate));
  box-shadow: var(--blissy-shadow-box-lg);
}
.single-product .nt-testimonial-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.single-product .nt-testimonial-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--blissy-bg-specs);
}

/* Quote text column */
.single-product .nt-testimonial-content {
  flex: 1;
}
.single-product .nt-testimonial-quote-title {
  font-family: var(--blissy-font-expert);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-black);
  line-height: var(--blissy-leading-snug);
  margin-bottom: var(--blissy-gap-md);
}
.single-product .nt-testimonial-quote-title span {
  background: var(--blissy-bg-light-blue);
  font-size: var(--blissy-text-3xl);
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.single-product .nt-testimonial-body {
  font-family: var(--blissy-font-body);
  font-size: var(--blissy-text-base);
  font-weight: var(--blissy-weight-regular);
  color: var(--blissy-text-primary);
  line-height: var(--blissy-leading-base);
  margin-bottom: var(--blissy-gap-md);
}
.single-product .nt-testimonial-name {
  font-family: var(--blissy-font-expert);
  font-size: var(--blissy-text-xl);
  font-weight: var(--blissy-weight-regular);
  color: var(--blissy-color-black);
  margin-bottom: var(--blissy-gap-lg);
}
.single-product .nt-testimonial-btn {
  display: inline-block;
  background: var(--blissy-btn-secondary-bg);
  color: var(--blissy-btn-secondary-color);
  font-family: var(--blissy-btn-secondary-font);
  font-size: var(--blissy-btn-secondary-size);
  font-weight: var(--blissy-weight-regular);
  border-radius: var(--blissy-btn-secondary-radius);
  padding: var(--blissy-btn-secondary-padding);
  letter-spacing: var(--blissy-tracking-cta);
  text-decoration: none;
  text-transform: uppercase;
}
.single-product .nt-testimonial-btn:hover {
  background: var(--blissy-color-cta-hover);
  color: var(--blissy-text-on-cta);
}

/* ══════════════════════════════════════════════════════════
   BELIEVER MARQUEE  (nt-believer-band)
   Infinite scrolling photo strip — 2 rows, both scroll left
   Row 2 offset by half so rows feel staggered like amoils.com
══════════════════════════════════════════════════════════ */
@keyframes nt-marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.single-product .nt-believer-band {
  padding: 0;
  overflow: hidden;
}
.single-product .nt-believer-heading {
  background: var(--blissy-bg-light-blue);
  font-family: var(--blissy-font-display);
  font-size: var(--blissy-text-4xl);
  font-weight: var(--blissy-weight-regular);
  color: var(--blissy-color-ink);
  letter-spacing: var(--blissy-tracking-cta);
  text-transform: uppercase;
  text-align: center;
  padding: var(--blissy-section-py-sm) 0;
  margin: 0;
}
.single-product .nt-believer-marquee {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0 var(--blissy-gap-lg);
}
.single-product .nt-believer-row {
  overflow: hidden;
}
.single-product .nt-believer-track {
  display: flex;
  gap: 4px;
  width: max-content;
  animation: nt-marquee-left 30s linear infinite;
}
.single-product .nt-believer-row--reverse .nt-believer-track {
  animation: nt-marquee-left 36s linear infinite;
  animation-delay: -18s;
}
.single-product .nt-believer-track img {
  width: 180px;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 767px) {
  .single-product .nt-believer-track img {
    width: 120px;
    height: 160px;
  }
}

/* ===== CTA BAND (priority 20) — "NOW IS THE TIME!" ===== */
.single-product .nt-cta-band {
  background-color: var(--blissy-bg-pink);
  background-size: cover;
  background-position: center;
  padding: var(--blissy-section-py-sm) var(--blissy-container-gutter);
  text-align: center;
}
.single-product .nt-cta-inner {
  max-width: var(--blissy-container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--blissy-gap-md);
}
.single-product .nt-cta-warning {
  font-family: var(--blissy-font-expert);
  font-size: var(--blissy-text-lg);
  font-weight: var(--blissy-weight-semibold);
  color: var(--blissy-text-primary);
  letter-spacing: var(--blissy-tracking-display-sm);
  text-transform: uppercase;
  margin: 0;
}
.single-product .nt-cta-heading {
  font-family: var(--blissy-font-display);
  font-size: var(--blissy-text-5xl);
  font-weight: var(--blissy-weight-regular);
  color: var(--blissy-color-ink);
  letter-spacing: var(--blissy-tracking-wider);
  line-height: var(--blissy-leading-heading);
  text-transform: uppercase;
  margin: 0;
}
.single-product .nt-cta-body {
  font-family: var(--blissy-font-expert);
  font-size: var(--blissy-text-3xl);
  font-weight: var(--blissy-weight-light);
  color: var(--blissy-color-ink);
  line-height: var(--blissy-leading-relaxed);
  margin: 0;
}
.single-product .nt-cta-highlight {
  background: var(--blissy-bg-light-blue);
  font-weight: var(--blissy-weight-bold);
  padding: 0 var(--blissy-gap-sm);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.single-product .nt-cta-btn {
  display: inline-block;
  background: var(--blissy-color-navy);
  color: var(--blissy-text-on-cta);
  font-family: var(--blissy-font-display);
  font-size: var(--blissy-text-xl);
  font-weight: var(--blissy-weight-regular);
  padding: var(--blissy-gap-sm) var(--blissy-gap-md);
  border-radius: var(--blissy-radius-sm);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: var(--blissy-tracking-cta);
  transition: background 0.2s;
}
.single-product .nt-cta-btn:hover {
  background: var(--blissy-color-cta);
  color: var(--blissy-text-on-cta);
}

/* Mobile */
@media (max-width: 767px) {
  .single-product .nt-hero-banner-inner {
    padding-left: var(--blissy-gap-lg);
    padding-right: var(--blissy-gap-lg);
  }
  .single-product .nt-hero-heading span {
    font-size: var(--blissy-text-3xl);
  }
  .single-product .nt-testimonial-layout {
    flex-direction: column;
    align-items: center;
    gap: var(--blissy-gap-lg);
  }
  .single-product .nt-testimonial-polaroid {
    max-width: 240px;
  }
  .single-product .nt-cta-band {
    padding: var(--blissy-section-py-sm) var(--blissy-gap-lg);
  }
  .single-product .nt-cta-heading {
    font-size: var(--blissy-text-3xl);
  }
  .single-product .nt-cta-body {
    font-size: var(--blissy-text-xl);
  }
}

/* ══════════════════════════════════════════════════════════
   SPIN-TO-WIN POPUP  (Blissy-replica layout)
══════════════════════════════════════════════════════════ */

.nt-spin-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: var(--blissy-gap-sm);
}
.nt-spin-overlay.nt-spin-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Modal — left 57% photo / right 43% content */
.nt-spin-modal {
  position: relative;
  display: flex;
  background: var(--blissy-color-white);
  border-radius: var(--blissy-radius-sm);
  overflow: hidden;
  max-width: 860px;
  width: 100%;
  max-height: 92vh;
  box-shadow: var(--blissy-shadow-box-lg);
}

.nt-spin-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--blissy-color-ink);
  cursor: pointer;
  z-index: 10;
  padding: 0;
}
.nt-spin-close:hover { opacity: 0.55; }

/* Left panel — full-height product photo */
.nt-spin-left {
  width: 57%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  min-height: 420px;
}
.nt-spin-product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Right panel */
.nt-spin-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 28px 22px;
  overflow-y: auto;
}

/* Brand name — always visible at top */
.nt-spin-brand {
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-xl);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-ink);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 2px;
  flex-shrink: 0;
  width: 100%;
}

/* Step wrappers */
.nt-spin-right [data-step] {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex: 1;
}
.nt-spin-right [data-step][hidden] {
  display: none !important;
}

/* SPIN TO WIN heading */
.nt-spin-main-heading {
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-4xl);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-ink);
  line-height: var(--blissy-leading-tight);
  margin: 0;
}

.nt-spin-subtext {
  font-family: var(--blissy-font-body);
  font-size: var(--blissy-text-sm);
  color: var(--blissy-text-muted);
  margin: 0;
  line-height: var(--blissy-leading-base);
}

/* Wheel */
.nt-spin-wheel-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 6px;
}

/* Teardrop / map-pin pointer — navy, points down, sits above wheel */
.nt-spin-pointer-pin {
  width: 24px;
  height: 32px;
  margin-bottom: -4px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

#nt-spin-canvas {
  display: block;
  cursor: pointer;
  border-radius: 50%;
}

/* "UNLOCK UP TO" label and "YOUR ORDER" label */
.nt-spin-unlock-top {
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-sm);
  font-weight: var(--blissy-weight-bold);
  letter-spacing: var(--blissy-tracking-cta);
  color: var(--blissy-color-ink);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

/* Big discount number e.g. "59% OFF" */
.nt-spin-unlock-big {
  font-family: var(--blissy-font-heading);
  font-size: 62px;
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-ink);
  line-height: 1;
  margin: 0;
}

/* Forms */
.nt-spin-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nt-spin-form input {
  width: 100%;
  padding: 13px 16px;
  border: var(--blissy-input-border);
  border-radius: var(--blissy-input-radius);
  font-family: var(--blissy-font-body);
  font-size: var(--blissy-text-base);
  color: var(--blissy-input-color);
  box-sizing: border-box;
}
.nt-spin-form input:focus {
  outline: 2px solid var(--blissy-color-navy);
  outline-offset: 2px;
}

/* Primary button — dark navy, two-line text */
.nt-spin-btn-primary {
  width: 100%;
  background: var(--blissy-color-navy);
  color: var(--blissy-text-on-cta);
  border: none;
  border-radius: var(--blissy-radius-xs);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 16px 12px;
  gap: 2px;
  text-align: center;
}
.nt-spin-btn-primary:hover { background: var(--blissy-color-ink); }

.nt-spin-btn-top {
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-base);
  font-weight: var(--blissy-weight-bold);
  letter-spacing: var(--blissy-tracking-cta);
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--blissy-text-on-cta);
}
.nt-spin-btn-sub {
  font-family: var(--blissy-font-body);
  font-size: var(--blissy-text-xs);
  font-weight: var(--blissy-weight-regular);
  text-transform: none;
  letter-spacing: normal;
  opacity: 0.88;
  color: var(--blissy-text-on-cta);
}

/* "NO THANKS" outline button */
.nt-spin-btn-outline {
  width: 100%;
  background: var(--blissy-color-white);
  color: var(--blissy-color-ink);
  border: 1.5px solid var(--blissy-color-border);
  border-radius: var(--blissy-radius-xs);
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-sm);
  font-weight: var(--blissy-weight-bold);
  letter-spacing: var(--blissy-tracking-cta);
  text-transform: uppercase;
  padding: 13px 16px;
  cursor: pointer;
}
.nt-spin-btn-outline:hover { background: var(--blissy-bg-specs); }

/* Legal text */
.nt-spin-legal {
  font-family: var(--blissy-font-body);
  font-size: 10px;
  color: var(--blissy-text-muted);
  margin: 0;
  line-height: 1.55;
  text-align: center;
}

/* Code reveal */
.nt-spin-code-box {
  display: flex;
  align-items: center;
  gap: var(--blissy-gap-xs);
  border: 2px dashed var(--blissy-color-navy);
  border-radius: var(--blissy-radius-xs);
  padding: 10px 16px;
  background: var(--blissy-bg-light-blue);
  width: 100%;
  box-sizing: border-box;
}
.nt-spin-code-value {
  font-family: var(--blissy-font-heading);
  font-size: var(--blissy-text-lg);
  font-weight: var(--blissy-weight-bold);
  color: var(--blissy-color-ink);
  letter-spacing: var(--blissy-tracking-cta);
  flex: 1;
  text-align: center;
}
.nt-spin-copy-btn {
  background: var(--blissy-color-navy);
  color: var(--blissy-text-on-cta);
  border: none;
  border-radius: var(--blissy-radius-xs);
  font-family: var(--blissy-font-body);
  font-size: var(--blissy-text-xs);
  font-weight: var(--blissy-weight-bold);
  padding: 6px 12px;
  cursor: pointer;
  white-space: nowrap;
}
.nt-spin-copy-btn:hover { background: var(--blissy-color-ink); }

/* Mobile */
@media (max-width: 640px) {
  .nt-spin-modal {
    flex-direction: column;
    max-height: 96vh;
  }
  .nt-spin-left {
    width: 100%;
    height: 200px;
    min-height: unset;
    flex-shrink: 0;
  }
  .nt-spin-right {
    padding: 20px 20px 16px;
  }
  .nt-spin-main-heading {
    font-size: var(--blissy-text-3xl);
  }
  .nt-spin-unlock-big {
    font-size: 48px;
  }
  #nt-spin-canvas {
    width: 220px;
    height: 220px;
  }
}

/* ════════════════════════════════════════════════════════
   OUR STORY PAGE  (page-our-story.php)
════════════════════════════════════════════════════════ */

.nt-story-page {
  padding: 72px 24px 100px;
  background: #fff;
}
.nt-story-container {
  max-width: 720px;
  margin: 0 auto;
}
.nt-story-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--nt-navy, #162950);
  text-align: center;
  margin: 0 0 48px;
  letter-spacing: -.02em;
}
.nt-story-hook {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--nt-navy, #162950);
  border-left: 4px solid var(--nt-rose, #e07060);
  padding-left: 20px;
  margin: 0 0 36px;
  line-height: 1.5;
}
.nt-story-container p {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.85;
  color: #3a3e52;
  margin: 0 0 28px;
}
.nt-story-signoff {
  font-size: 17px !important;
  font-weight: 600;
  color: var(--nt-navy, #162950) !important;
  margin-top: 48px !important;
  line-height: 1.6 !important;
}
.nt-story-brand {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--nt-rose, #e07060);
  margin-top: 6px;
}
.nt-story-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid #e8eaf0;
}
.nt-story-trust span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #8a8fa8;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .nt-story-page {
    padding: 48px 20px 72px;
  }
  .nt-story-trust {
    flex-direction: column;
    gap: 8px;
  }
}

/* ════════════════════════════════════════════════════════
   FAQ PAGE  (page-faq.php)
════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────── */
.nt-faq-hero {
  position: relative;
  background: var(--nt-navy, #162950);
  padding: 80px 24px 72px;
  text-align: center;
  overflow: hidden;
}
.nt-faq-hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.nt-faq-q {
  position: absolute;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,.06);
  line-height: 1;
  user-select: none;
}
.nt-faq-q--1 { top: -20px;  left: 2%;   font-size: 140px; }
.nt-faq-q--2 { top: 50%;    left: 6%;   font-size: 80px;  }
.nt-faq-q--3 { bottom: -10px; left: 18%; font-size: 60px; }
.nt-faq-q--4 { top: -10px;  right: 4%;  font-size: 160px; }
.nt-faq-q--5 { top: 55%;    right: 8%;  font-size: 90px;  }
.nt-faq-q--6 { bottom: 0;   right: 22%; font-size: 55px;  }

.nt-faq-hero-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.nt-faq-hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--nt-rose, #f4a99a);
  margin-bottom: 16px;
}
.nt-faq-hero-heading {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 36px;
  line-height: 1.15;
}
.nt-faq-hero-contacts {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.nt-faq-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 6px;
  padding: 14px 32px;
  text-decoration: none;
  color: #fff;
  min-width: 200px;
  transition: border-color .2s, background .2s;
}
.nt-faq-contact-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}
.nt-faq-contact-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  color: rgba(255,255,255,.65);
}
.nt-faq-contact-value {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.nt-faq-hero-avail {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.7;
}
.nt-faq-avail-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}

/* ── Body layout ─────────────────────────────────── */
.nt-faq-body {
  background: #f3f4f8;
  padding: 64px 0 96px;
}
.nt-faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Left nav ────────────────────────────────────── */
.nt-faq-nav {
  position: sticky;
  top: 100px;
}
.nt-faq-nav-label {
  font-size: 12px;
  font-weight: 700;
  color: #8a8fa8;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.nt-faq-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nt-faq-nav-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #4a4f6a;
  cursor: pointer;
  text-align: left;
  transition: background .18s, border-color .18s, color .18s;
}
.nt-faq-nav-btn svg {
  flex-shrink: 0;
  opacity: .55;
  transition: opacity .18s;
}
.nt-faq-nav-btn:hover {
  background: #eef0f8;
  color: var(--nt-navy, #162950);
}
.nt-faq-nav-btn--active {
  background: var(--nt-navy, #162950) !important;
  border-color: var(--nt-navy, #162950) !important;
  color: #fff !important;
  font-weight: 700;
}
.nt-faq-nav-btn--active svg {
  opacity: 1;
}

/* ── Right: accordion ────────────────────────────── */
.nt-faq-group {
  display: none;
}
.nt-faq-group--active {
  display: block;
}
.nt-faq-group-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--nt-navy, #162950);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e4ef;
}
.nt-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nt-faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(22,41,80,.05);
}
.nt-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--nt-navy, #162950);
  text-align: left;
  cursor: pointer;
  transition: color .18s;
}
.nt-faq-question:hover {
  color: var(--nt-rose, #e07060);
}
.nt-faq-question--open {
  color: var(--nt-rose, #e07060);
}
.nt-faq-icon {
  flex-shrink: 0;
  transition: transform .28s ease;
}
.nt-faq-question--open .nt-faq-icon {
  transform: rotate(45deg);
}
.nt-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .32s ease;
}
.nt-faq-answer[hidden] {
  display: block !important; /* allow transition; visibility controlled by max-height */
  max-height: 0 !important;
}
.nt-faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.75;
  color: #5a5e72;
  border-top: 1px solid #f0f1f7;
  padding-top: 16px;
}

/* ── Bottom CTA band ─────────────────────────────── */
.nt-faq-cta-band {
  background: var(--nt-navy, #162950);
  padding: 64px 0;
}
.nt-faq-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.nt-faq-cta-copy h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
}
.nt-faq-cta-copy p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  margin: 0 0 28px;
}
.nt-faq-cta-btn {
  display: inline-block;
  background: var(--nt-rose, #e07060);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background .2s, transform .2s;
}
.nt-faq-cta-btn:hover {
  background: #c85a4a;
  transform: translateY(-2px);
}
.nt-faq-cta-facts {
  display: flex;
  gap: 36px;
}
.nt-faq-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.nt-faq-fact strong {
  font-size: 24px;
  font-weight: 900;
  color: var(--nt-rose, #f4a99a);
}
.nt-faq-fact span {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-align: center;
  white-space: nowrap;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 860px) {
  .nt-faq-layout {
    grid-template-columns: 1fr;
  }
  .nt-faq-nav {
    position: static;
  }
  .nt-faq-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .nt-faq-nav-btn {
    width: auto;
  }
  .nt-faq-cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .nt-faq-cta-facts {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media (max-width: 540px) {
  .nt-faq-hero {
    padding: 56px 20px 52px;
  }
  .nt-faq-contact-btn {
    min-width: 0;
    width: 100%;
  }
  .nt-faq-question {
    padding: 16px 18px;
    font-size: 14px;
  }
}

/* ════════════════════════════════════════════════════════
   BLOG PAGE  (home.php)
   Kerasal-inspired 3-section structure + Nailtroe colours
════════════════════════════════════════════════════════ */

/* ── 1. Hero ─────────────────────────────────────── */
.nt-blog-hero {
  background: var(--nt-navy, #162950);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nt-blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,220,210,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.nt-blog-hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.nt-blog-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--nt-rose, #f4a99a);
  background: rgba(244,169,154,.12);
  border: 1px solid rgba(244,169,154,.3);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.nt-blog-hero-heading {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.nt-blog-hero-heading em {
  font-style: normal;
  color: var(--nt-rose, #f4a99a);
  display: inline-block;
  background: rgba(244,169,154,.12);
  padding: 2px 10px;
}
.nt-blog-hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.72);
  margin: 0;
  line-height: 1.6;
}

/* ── 2. Concern Cards ────────────────────────────── */
.nt-blog-concern-band {
  background: #fdf4f2;
  padding: 72px 0 80px;
}
.nt-blog-concern-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.nt-blog-concern-header h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--nt-navy, #162950);
  margin: 0 0 14px;
  letter-spacing: -.01em;
}
.nt-blog-concern-header p {
  font-size: 16px;
  color: #5a5e72;
  line-height: 1.6;
  margin: 0;
}
.nt-blog-concern-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nt-blog-concern-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(22,41,80,.06);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
}
.nt-blog-concern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(22,41,80,.13);
}
.nt-blog-concern-card--active {
  outline: 2.5px solid var(--nt-navy, #162950);
}
.nt-blog-concern-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.nt-blog-concern-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .35s ease;
}
.nt-blog-concern-card:hover .nt-blog-concern-card-img img {
  transform: scale(1.04);
}
.nt-blog-concern-card-label {
  padding: 18px 20px 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nt-blog-concern-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--nt-rose, #e07060);
}
.nt-blog-concern-card-label strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--nt-navy, #162950);
  line-height: 1.35;
}

/* ── 3. Trust Band ───────────────────────────────── */
.nt-blog-trust-band {
  background: var(--nt-navy, #162950);
  padding: 72px 0;
}
.nt-blog-trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.nt-blog-trust-copy h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
}
.nt-blog-trust-sub {
  font-size: 18px;
  font-weight: 700;
  color: var(--nt-rose, #f4a99a);
  line-height: 1.5;
  margin: 0 0 32px;
}
.nt-blog-trust-btn {
  display: inline-block;
  background: var(--nt-rose, #e07060);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background .2s ease, transform .2s ease;
}
.nt-blog-trust-btn:hover {
  background: #c85a4a;
  transform: translateY(-2px);
}
.nt-blog-trust-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.nt-blog-trust-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── 4. Blog Grid ────────────────────────────────── */
.nt-blog-grid-band {
  padding: 72px 0 96px;
  background: #fff;
}
.nt-blog-grid-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  border-bottom: 2px solid #f0f0f4;
  padding-bottom: 20px;
}
.nt-blog-grid-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  color: var(--nt-navy, #162950);
  margin: 0;
}
.nt-blog-reset-filter {
  font-size: 14px;
  font-weight: 700;
  color: var(--nt-rose, #e07060);
  text-decoration: none;
}
.nt-blog-reset-filter:hover {
  text-decoration: underline;
}
.nt-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.nt-blog-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(22,41,80,.07);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.nt-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(22,41,80,.13);
}
.nt-blog-card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}
.nt-blog-card-img,
.nt-blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.nt-blog-card:hover .nt-blog-card-img {
  transform: scale(1.04);
}
.nt-blog-card-img-placeholder {
  background: linear-gradient(135deg, #dde3f0 0%, #f0e8f4 100%);
}
.nt-blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--nt-navy, #162950);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.nt-blog-card-body {
  padding: 22px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nt-blog-card-date {
  font-size: 12px;
  color: #999;
  letter-spacing: .04em;
}
.nt-blog-card-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  color: var(--nt-navy, #162950);
}
.nt-blog-card-title a {
  color: inherit;
  text-decoration: none;
}
.nt-blog-card-title a:hover {
  color: var(--nt-rose, #e07060);
}
.nt-blog-card-excerpt {
  font-size: 14px;
  color: #6b6f82;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.nt-blog-card-read-more {
  font-size: 13px;
  font-weight: 800;
  color: var(--nt-rose, #e07060);
  text-decoration: none;
  letter-spacing: .04em;
  margin-top: 4px;
}
.nt-blog-card-read-more:hover {
  text-decoration: underline;
}

/* Pagination */
.nt-blog-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.nt-blog-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nt-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--nt-navy, #162950);
  background: #f4f5f9;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.nt-blog-pagination .page-numbers.current,
.nt-blog-pagination .page-numbers:hover {
  background: var(--nt-navy, #162950);
  color: #fff;
}
.nt-blog-pagination .page-numbers.prev,
.nt-blog-pagination .page-numbers.next {
  width: auto;
  padding: 0 16px;
  font-size: 13px;
}

/* Empty state */
.nt-blog-empty {
  text-align: center;
  padding: 60px 0;
  color: #6b6f82;
}
.nt-blog-empty p {
  font-size: 17px;
  margin-bottom: 24px;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
  .nt-blog-concern-cards,
  .nt-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nt-blog-trust-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .nt-blog-trust-image {
    max-width: 480px;
  }
}
@media (max-width: 600px) {
  .nt-blog-hero {
    padding: 56px 20px 52px;
  }
  .nt-blog-concern-cards,
  .nt-blog-grid {
    grid-template-columns: 1fr;
  }
  .nt-blog-grid-header {
    flex-direction: column;
    gap: 8px;
  }
}
