:root {
  --nt-ink: #17211c;
  --nt-muted: #5f6f66;
  --nt-line: #d9e2dc;
  --nt-soft: #f3f8f5;
  --nt-cream: #fbfaf5;
  --nt-green: #2f6f54;
  --nt-green-dark: #214d3b;
  --nt-gold: #b77a39;
  --nt-gold-light: #f5e9d6;
  --nt-white: #ffffff;
  --nt-red: #d63838;
  --nt-shadow: 0 20px 55px rgba(28, 49, 40, 0.14);
  --nt-radius: 10px;
}

* { 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 (like Blissy's highlighted items) */
.menu-bundle > a,
.primary-nav .menu li:first-child > 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,
.primary-nav .menu li:first-child > 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; }

/* ─── HERO ─── */
.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 ─── */
.bundle-band { background: var(--nt-cream); }

.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-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: 1.5px solid #d0d0d0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.nt-promo-box__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 14px;
  background: #fdf0e8;
  flex-shrink: 0;
}

.nt-sale-tag {
  display: inline-block;
  background: #d63838;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 8px 18px 8px 10px;
  border-radius: 3px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.nt-promo-box__copy {
  flex: 1;
  background: #111;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13.5px;
  line-height: 1.4;
}

.nt-pb-headline { font-size: 16px; font-weight: 700; display: block; margin-bottom: 3px; }
.nt-pb-price,
.nt-pb-save     { color: #f5c842; font-weight: 700; }

/* ── Countdown bar ── */
.nt-countdown-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  background: #fdf6ec;
  border: 1.5px solid #d0d0d0;
  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: var(--nt-green);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13.5px;
  letter-spacing: 0.4px;
  border-radius: 0 0 8px 8px;
  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;
}

/* ── 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%; }
}
