.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.organic-shape {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* Sticky top bar: banner + promo + nav stay visible while scrolling */
.nt-sticky-top {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #fdf9ee;
}
.nt-test-banner {
  background: #732001;
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nt-test-banner a {
  color: #ffdbd0;
  text-decoration: underline;
}
.nt-promo-bar {
  background: #1a2e22;
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
#nt-header.nt-v2-header {
  position: relative;
  width: 100%;
  background: rgba(253, 249, 238, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(190, 201, 193, 0.3);
  box-shadow: 0 1px 8px rgba(26, 46, 34, 0.06);
}
body.has-test-banner main {
  padding-top: 0;
}

/* Product page — five featured products (matches live /products/ lineup) */
.nt-pdp-picker-wrap {
  margin-top: 0.5rem;
}
.nt-home-five-wrap {
  position: relative;
  padding: 0 52px;
}
.nt-home-feature-viewport {
  overflow: hidden;
}
.nt-home-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.nt-home-feature-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}
.nt-home-feature-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  padding: 0.75rem;
  background: #1a2e22;
  border-radius: 0.5rem;
  text-decoration: none;
}
.nt-home-feature-card--light .nt-home-feature-media {
  background: #ffffff;
  border: 1px solid rgba(190, 201, 193, 0.45);
}
.nt-home-feature-media img {
  width: 100%;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.08));
}
.nt-home-feature-title {
  margin: 1rem 0 0;
  line-height: 1.3;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nt-home-feature-title a {
  text-decoration: none;
  color: inherit;
}
@media (max-width: 1100px) {
  .nt-home-feature-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1.25rem;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: #0f6b4d #f2eee3;
  }
  .nt-home-feature-card {
    flex: 0 0 min(200px, 42vw);
    scroll-snap-align: start;
  }
}
@media (min-width: 1101px) {
  .nt-home-five-wrap .nt-carousel-btn {
    display: none;
  }
  .nt-home-five-wrap {
    padding: 0;
  }
}
/* Shop carousel cards (if used elsewhere) */
.nt-products-carousel-wrap {
  position: relative;
  padding: 0 52px;
}
.nt-carousel-viewport {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.nt-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 2px 20px;
  scrollbar-width: thin;
  scrollbar-color: #0f6b4d #f2eee3;
}
.nt-carousel-card {
  flex: 0 0 280px;
  width: 280px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}
.nt-carousel-card .nt-card-footer {
  position: relative;
  z-index: 2;
}
.nt-carousel-card .nt-card-media,
.nt-carousel-card .nt-card-title a {
  position: relative;
  z-index: 1;
}
.nt-add-cart-btn {
  position: relative;
  z-index: 30;
  cursor: pointer;
  flex-shrink: 0;
  pointer-events: auto;
  touch-action: manipulation;
}
button[data-add-cart] {
  cursor: pointer;
  pointer-events: auto;
}
.nt-add-cart-btn .material-symbols-outlined {
  pointer-events: none;
}
#nt-pdp-lab,
#nt-pdp-shipping {
  position: relative;
  z-index: 5;
  text-decoration: none;
}
#nt-pdp-add {
  position: relative;
  z-index: 5;
  cursor: pointer;
}
.nt-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #bec9c1;
  color: #1a2e22;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s;
}
.nt-carousel-btn:hover {
  background: #0f6b4d;
  color: #fff;
  border-color: #0f6b4d;
}
.nt-carousel-prev {
  left: 4px;
}
.nt-carousel-next {
  right: 4px;
}
@media (max-width: 640px) {
  .nt-products-carousel-wrap {
    padding: 0 44px;
  }
  .nt-carousel-card {
    flex: 0 0 min(260px, 78vw);
    width: min(260px, 78vw);
  }
  .nt-carousel-btn {
    width: 36px;
    height: 36px;
  }
  .nt-carousel-prev {
    left: 2px;
  }
  .nt-carousel-next {
    right: 2px;
  }
}

/* Guide cards — valid single link */
.nt-guide-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.nt-guide-card h4 {
  margin: 0 0 1rem;
}

.nt-toast {
  position: fixed;
  top: 6rem;
  right: 1.25rem;
  z-index: 10001;
  background: #0f6b4d;
  color: #fff;
  padding: 0.875rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(26, 46, 34, 0.2);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.nt-toast--visible {
  transform: translateX(0);
  opacity: 1;
}
details[open] .expand-icon {
  transform: rotate(180deg);
}
.nt-v2-footer .nt-footer-col h3 {
  margin: 0;
}
.nt-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nt-footer-social {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s;
}
.nt-footer-social:hover {
  background: #0f6b4d;
  border-color: #0f6b4d;
}

#nt-variant-select {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #bec9c1;
  background: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
}

/* PDP quantity — fixed pill; 1 → 2 must not resize the control */
.nt-qty-control {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  width: 8.75rem;
  max-width: 8.75rem;
  height: 2.75rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.nt-qty-value {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
}
.nt-qty-btn {
  flex: 0 0 2.75rem;
  width: 2.75rem;
  min-width: 0;
  max-width: 2.75rem;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  color: inherit;
  transition: background-color 0.15s ease;
}
.nt-qty-btn:hover {
  background-color: #f2eee3;
}
.nt-qty-btn .material-symbols-outlined {
  font-size: 1.25rem;
  line-height: 1;
  display: block;
  pointer-events: none;
}
.nt-qty-btn:active {
  transform: none;
}

/* Legal / privacy policy */
.nt-legal-page .nt-legal-toc a {
  text-decoration: none;
}
.nt-legal-page .nt-legal-toc a:hover {
  border-color: #0f6b4d;
  color: #0f6b4d;
}
.nt-legal-section h2 {
  scroll-margin-top: 7rem;
}
.nt-legal-section h3 {
  scroll-margin-top: 7rem;
}
.nt-legal-list li {
  line-height: 1.65;
}
.nt-legal-section a {
  color: #0f6b4d;
  font-weight: 600;
}
.nt-legal-section a:hover {
  text-decoration: underline;
}

/* About — botanical illustration: smaller card, full artwork visible */
.nt-about-feature-col {
  max-width: min(100%, 20rem);
  margin-inline: auto;
  padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
  padding-left: clamp(0.25rem, 2vw, 1rem);
  min-width: 0;
}
@media (min-width: 768px) {
  .nt-about-feature-col {
    max-width: min(100%, 22rem);
    margin-inline: 0 0 auto;
    padding-bottom: 2.75rem;
    padding-left: 1.25rem;
  }
}
.nt-about-feature-media,
.nt-about-visit-media {
  overflow: visible;
  background: rgba(255, 255, 255, 0.65);
  padding: clamp(0.5rem, 1.5vw, 1rem);
}
.nt-about-feature-media img,
.nt-about-feature-img,
.nt-about-visit-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.nt-about-quote {
  z-index: 2;
}
.nt-about-visit-media {
  max-height: none;
  min-height: 0;
  height: auto;
}
@media (min-width: 768px) {
  .nt-about-visit-wrap .nt-about-visit-media {
    max-width: min(100%, 24rem);
  }
}

/* Blog articles in v2 test shell */
.nt-blog-article .nt-blog-main {
  overflow-x: hidden;
}
.nt-blog-article .nt-v2-header a {
  white-space: nowrap;
}

/* Blog journal pagination */
.nt-blog-pagination__btn,
.nt-blog-pagination__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 0.65rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid rgba(15, 107, 77, 0.2);
  background: #fff;
  color: #1a2e22;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.nt-blog-pagination__num {
  min-width: 2.5rem;
  padding: 0.65rem 0.75rem;
  text-align: center;
}
.nt-blog-pagination__btn:hover:not(:disabled),
.nt-blog-pagination__num:hover:not(.nt-blog-pagination__num--active) {
  border-color: #0f6b4d;
  color: #0f6b4d;
}
.nt-blog-pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.nt-blog-pagination__num--active {
  background: #0f6b4d;
  border-color: #0f6b4d;
  color: #fff;
}

/* CTAs that should not grow on hover/click */
.nt-cta-stable,
.nt-cta-stable:hover,
.nt-cta-stable:active,
.nt-cta-stable:focus {
  transform: none !important;
  scale: 1 !important;
}

/* Home reviews — auto-scroll left to right */
.nt-reviews-marquee {
  margin-top: 0;
  overflow: hidden;
  width: 100%;
}
.nt-reviews-mask {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.nt-reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 0 1.25rem;
  animation: nt-reviews-scroll 55s linear infinite;
}
.nt-reviews-marquee:hover .nt-reviews-track {
  animation-play-state: paused;
}
@keyframes nt-reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.nt-review-card {
  flex: 0 0 auto;
  width: min(340px, 85vw);
}
@media (prefers-reduced-motion: reduce) {
  .nt-reviews-track {
    animation: none;
    overflow-x: auto;
    max-width: 100%;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }
  .nt-review-card {
    scroll-snap-align: start;
  }
}
