/*
Theme Name: Natura Labs
Theme URI: https://natura-labs.ru/
Author: Codex Migration
Description: Migration theme for Natura Labs (Tilda -> WordPress/WooCommerce)
Version: 0.1.0
Requires at least: 6.5
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: naturalabs
*/

:root {
  --nl-bg: #f2f1ed;
  --nl-surface: #ffffff;
  --nl-surface-2: #f8f7f2;
  --nl-ink: #131614;
  --nl-muted: #5b655f;
  --nl-line: #d8ddd4;
  --nl-brand: #6b8e4e;
  --nl-brand-deep: #3c5148;
  --nl-brand-soft: #b2c5b2;
  --nl-accent: #e5eddc;
  --nl-danger: #a43f3f;
  --nl-radius-sm: 6px;
  --nl-radius-md: 10px;
  --nl-radius-lg: 14px;
  --nl-shadow-1: 0 8px 24px rgba(19, 22, 20, 0.06);
  --nl-shadow-2: 0 18px 48px rgba(19, 22, 20, 0.12);
  --nl-container: 1180px;
  --nl-container-narrow: 760px;
  --nl-font-heading: "Montserrat", Arial, sans-serif;
  --nl-font-body: "Inter", Arial, sans-serif;
  --nl-font-size-body: 20px;
  --nl-font-weight-body: 300;
  --nl-font-weight-heading: 600;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  color: var(--nl-ink);
  background:
    radial-gradient(1200px 700px at 100% -10%, rgba(107, 142, 78, 0.18), transparent 60%),
    radial-gradient(900px 600px at -5% 5%, rgba(60, 81, 72, 0.10), transparent 55%),
    var(--nl-bg);
  font-family: var(--nl-font-body);
  font-size: var(--nl-font-size-body);
  font-weight: var(--nl-font-weight-body);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--nl-font-heading);
  font-weight: var(--nl-font-weight-heading);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--nl-surface);
  z-index: 10000;
}

.nl-container {
  width: min(var(--nl-container), calc(100% - 2rem));
  margin-inline: auto;
}

.nl-container--narrow {
  width: min(var(--nl-container-narrow), calc(100% - 2rem));
  margin-inline: auto;
}

.nl-site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nl-main {
  flex: 1;
  padding-top: 5.5rem;
}

.nl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(242, 241, 237, 0.82);
  border-bottom: 1px solid rgba(60, 81, 72, 0.12);
}

.nl-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.25rem;
}

.nl-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.nl-brand__logo {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 4px 12px rgba(19, 22, 20, 0.12);
}

.nl-brand__dot {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: linear-gradient(160deg, var(--nl-brand) 0%, var(--nl-brand-deep) 100%);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.45), 0 8px 18px rgba(60, 81, 72, 0.28);
}

.nl-brand__text-wrap {
  display: grid;
  line-height: 1.1;
  gap: 0.2rem;
}

.nl-brand__name {
  font-family: var(--nl-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nl-brand__tag {
  font-size: 0.72rem;
  color: var(--nl-muted);
  letter-spacing: 0.03em;
}

.nl-nav {
  justify-self: center;
}

.nl-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nl-menu__item {
  margin: 0;
}

.nl-menu__link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--nl-muted);
  font-weight: 600;
  font-size: 0.94rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nl-menu__link:hover,
.nl-menu__link:focus-visible,
.nl-menu__link.is-current {
  color: var(--nl-brand-deep);
  background: rgba(107, 142, 78, 0.12);
  outline: none;
}

.nl-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nl-header__mobile-actions {
  display: none;
}

.nl-header__action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(60, 81, 72, 0.12);
  text-decoration: none;
  font-weight: 600;
  color: var(--nl-brand-deep);
}

.nl-header__quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(107, 142, 78, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--nl-brand-deep);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nl-header__quick-action--cart {
  background: var(--nl-brand);
  border-color: var(--nl-brand);
  color: #fff;
}

.nl-header__quick-action--cart .nl-cart-badge {
  background: #fff;
  color: var(--nl-brand-deep);
}

.nl-header__action:hover,
.nl-header__action:focus-visible {
  background: #fff;
  box-shadow: var(--nl-shadow-1);
  outline: none;
}

.nl-cart-badge {
  min-width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  padding-inline: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nl-brand-deep);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.nl-nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(60, 81, 72, 0.15);
  background: rgba(255, 255, 255, 0.75);
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex-direction: column;
}

.nl-nav-toggle__line {
  width: 1rem;
  height: 2px;
  background: var(--nl-brand-deep);
  border-radius: 999px;
}

.nl-hero {
  padding: 1rem 0 0;
}

.nl-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
}

.nl-hero__inner > * {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.6));
  border: 1px solid rgba(60, 81, 72, 0.1);
  border-radius: var(--nl-radius-lg);
  padding: 1.25rem;
  box-shadow: var(--nl-shadow-1);
}

.nl-kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--nl-brand);
  font-size: 0.75rem;
}

.nl-hero__title,
.nl-page-hero__title {
  margin: 0;
  font-family: var(--nl-font-heading);
  line-height: 1.08;
  font-weight: var(--nl-font-weight-heading);
  letter-spacing: -0.01em;
}

.nl-hero__title {
  font-size: clamp(1.7rem, 2vw + 1rem, 2.5rem);
  max-width: 18ch;
}

.nl-hero__text,
.nl-page-hero__text {
  color: var(--nl-muted);
  margin: 0.75rem 0 0;
  max-width: 60ch;
}

.nl-hero__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.nl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.75rem 1.1rem;
  border: 1px solid transparent;
  background: linear-gradient(160deg, var(--nl-brand) 0%, var(--nl-brand-deep) 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(60, 81, 72, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.nl-btn:hover,
.nl-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(60, 81, 72, 0.24);
  outline: none;
}

.nl-btn--ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--nl-brand-deep);
  border-color: rgba(60, 81, 72, 0.15);
  box-shadow: none;
}

.nl-btn--sm {
  padding: 0.55rem 0.8rem;
  font-size: 0.88rem;
}

.nl-btn--hero {
  min-width: 13rem;
  min-height: 5.75rem;
  padding: 1rem 2.75rem;
  border-radius: 12px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, #7f9c5d 0%, #749056 100%);
  box-shadow: 0 1.2rem 2.2rem rgba(116, 144, 86, 0.28);
}

.nl-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.nl-chip {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  border-radius: 8px;
  border: 1px solid rgba(60, 81, 72, 0.12);
  background: rgba(255,255,255,0.9);
  color: var(--nl-brand-deep);
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 0.75rem;
}

.nl-chip:hover,
.nl-chip:focus-visible {
  background: var(--nl-accent);
  outline: none;
}

.nl-section {
  padding: 1.2rem 0;
}

.nl-section--tint {
  background: linear-gradient(180deg, rgba(178,197,178,0.14), rgba(255,255,255,0));
}

.nl-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.nl-section__head h2 {
  margin: 0;
  font-family: var(--nl-font-heading);
  font-size: clamp(1.3rem, 1.3vw + 0.95rem, 2rem);
}

.nl-section__sub {
  margin: 0.25rem 0 0;
  color: var(--nl-muted);
}

.nl-inline-link {
  color: var(--nl-brand-deep);
  font-weight: 700;
  text-decoration: none;
}

.nl-inline-link:hover,
.nl-inline-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.nl-grid {
  display: grid;
  gap: 1rem;
}

.nl-grid--products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nl-grid--posts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nl-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(60,81,72,0.1);
  border-radius: var(--nl-radius-md);
  overflow: clip;
  box-shadow: var(--nl-shadow-1);
  display: grid;
  grid-template-rows: auto 1fr;
}

.nl-card__media {
  display: block;
  aspect-ratio: 1.15 / 1;
  background:
    linear-gradient(180deg, rgba(178,197,178,0.18), rgba(178,197,178,0.04)),
    #f7f8f4;
}

.nl-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nl-card__media-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(107,142,78,0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(60,81,72,0.18), transparent 50%),
    #f4f3ef;
}

.nl-card__body {
  padding: 0.9rem;
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.nl-card__eyebrow {
  margin: 0;
  color: var(--nl-brand);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nl-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.nl-card__title a {
  text-decoration: none;
}

.nl-card__title a:hover,
.nl-card__title a:focus-visible {
  color: var(--nl-brand-deep);
  text-decoration: underline;
  outline: none;
}

.nl-card__meta {
  margin: 0;
  color: var(--nl-muted);
  font-size: 0.86rem;
}

.nl-card__excerpt {
  margin: 0;
  color: var(--nl-muted);
  font-size: 0.9rem;
}

.nl-card__row {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.nl-card__price {
  font-weight: 800;
  color: var(--nl-brand-deep);
}

.nl-card__price ins {
  text-decoration: none;
}

.nl-card__price del {
  opacity: 0.6;
}

.nl-page-hero {
  padding: 1rem 0 0.4rem;
}

.nl-page-hero .nl-container,
.nl-page-hero .nl-container--narrow {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.62));
  border: 1px solid rgba(60,81,72,0.1);
  border-radius: var(--nl-radius-lg);
  padding: 1rem 1.15rem;
  box-shadow: var(--nl-shadow-1);
}

.nl-post-meta {
  margin-top: 0.75rem;
  color: var(--nl-muted);
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.nl-feature-image {
  margin: 0 0 1rem;
  border-radius: var(--nl-radius-md);
  overflow: hidden;
  border: 1px solid rgba(60,81,72,0.1);
  background: var(--nl-surface);
  box-shadow: var(--nl-shadow-1);
}

.nl-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.nl-entry-content {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(60,81,72,0.1);
  border-radius: var(--nl-radius-lg);
  padding: 1rem;
  box-shadow: var(--nl-shadow-1);
}

.nl-entry-content.is-prose-content {
  font-size: 1rem;
}

.nl-entry-content.is-prose-content > *:first-child {
  margin-top: 0;
}

.nl-entry-content.is-prose-content > *:last-child {
  margin-bottom: 0;
}

.nl-entry-content.is-prose-content h1,
.nl-entry-content.is-prose-content h2,
.nl-entry-content.is-prose-content h3,
.nl-entry-content.is-prose-content h4 {
  font-family: var(--nl-font-heading);
  font-weight: var(--nl-font-weight-heading);
  line-height: 1.2;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
}

.nl-entry-content.is-prose-content p,
.nl-entry-content.is-prose-content li {
  color: #202421;
}

.nl-entry-content.is-prose-content a {
  color: var(--nl-brand-deep);
}

.nl-entry-content.is-prose-content blockquote {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--nl-brand);
  background: var(--nl-surface-2);
  border-radius: 0 8px 8px 0;
}

.nl-entry-content.is-prose-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.nl-entry-content.is-prose-content th,
.nl-entry-content.is-prose-content td {
  border: 1px solid var(--nl-line);
  padding: 0.6rem;
  vertical-align: top;
}

.nl-entry-content.has-tilda-content {
  padding: 0.8rem;
  overflow: clip;
}

.nl-entry-content.has-tilda-content .t-records {
  max-width: 100%;
  overflow: clip;
}

.nl-entry-content.has-tilda-content [class*="t-container"],
.nl-entry-content.has-tilda-content [class*="t-col"] {
  max-width: 100%;
}

.nl-entry-content.has-tilda-content img {
  max-width: 100% !important;
  height: auto !important;
}

.nl-entry-content.has-tilda-content iframe,
.nl-entry-content.has-tilda-content video {
  max-width: 100%;
}

.nl-entry-content.has-tilda-content .t-btn,
.nl-entry-content.has-tilda-content a[href*="#popup"] {
  border-radius: 8px !important;
}

.nl-home-content {
  position: relative;
}

.nl-hero--landing {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 1.75rem;
  background:
    radial-gradient(circle at 0% 15%, rgba(255,255,255,0.74), transparent 35%),
    radial-gradient(circle at 100% 90%, rgba(157, 180, 119, 0.14), transparent 28%),
    linear-gradient(180deg, #f1efeb 0%, #ece8e2 100%);
}

.nl-hero--landing::before {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -14%;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(126, 153, 90, 0.16) 0%, rgba(126, 153, 90, 0) 68%);
  filter: blur(18px);
}

.nl-hero--landing .nl-container {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - 2rem));
}

.nl-hero__landing-shell {
  position: relative;
  overflow: visible;
  padding: clamp(1.75rem, 2vw, 2.75rem) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nl-hero__landing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(32rem, 1.08fr);
  gap: 1rem;
  align-items: center;
  min-height: min(46vw, 44rem);
}

.nl-hero__content {
  padding: clamp(0.5rem, 1.5vw, 1.2rem) 0;
  max-width: 42rem;
  align-self: center;
}

.nl-hero--landing .nl-kicker {
  margin-bottom: 1rem;
  color: #739159;
}

.nl-hero--landing .nl-hero__title {
  font-size: clamp(2.9rem, 5vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: none;
  font-weight: 800;
}

.nl-hero--landing .nl-hero__title span {
  display: block;
}

.nl-hero--landing .nl-hero__text {
  margin-top: 1.75rem;
  max-width: 34rem;
  color: rgba(19, 22, 20, 0.88);
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  line-height: 1.42;
}

.nl-hero--landing .nl-hero__actions {
  margin-top: 2.2rem;
}

.nl-hero__stage {
  position: relative;
  min-height: clamp(30rem, 44vw, 40rem);
}

.nl-hero__dna {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: multiply;
  opacity: 0.5;
}

.nl-hero__dna--top {
  top: -7%;
  right: -6%;
  width: clamp(14rem, 18vw, 22rem);
  transform: rotate(12deg);
  opacity: 0.26;
}

.nl-hero__dna--middle {
  right: -8%;
  bottom: 6%;
  width: clamp(31rem, 48vw, 54rem);
  transform: rotate(15deg);
  opacity: 0.45;
}

.nl-hero__dna--bottom {
  left: 23%;
  bottom: -18%;
  width: clamp(18rem, 28vw, 30rem);
  transform: rotate(-30deg);
  opacity: 0.4;
}

.nl-hero__podium {
  position: absolute;
  bottom: 0;
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #f2f1ee 100%);
  box-shadow:
    0 1.8rem 2.8rem rgba(61, 68, 60, 0.12),
    inset 0 -0.9rem 1.2rem rgba(24, 22, 19, 0.035);
}

.nl-hero__podium::after {
  content: "";
  position: absolute;
  inset: auto 10% -1rem;
  height: 1.35rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(80, 79, 74, 0.22), rgba(80, 79, 74, 0) 72%);
  filter: blur(8px);
}

.nl-hero__podium--left {
  left: 6%;
  width: 29%;
  height: 26%;
  border-radius: 10px;
}

.nl-hero__podium--center {
  left: 29%;
  width: 39%;
  height: 16%;
  border-radius: 10px 10px 8px 8px;
}

.nl-hero__podium--right {
  right: 4%;
  width: 28%;
  height: 20%;
  border-radius: 10px;
}

.nl-hero-product {
  position: absolute;
  display: block;
  z-index: 3;
  filter: drop-shadow(0 1.3rem 1.8rem rgba(42, 37, 31, 0.18));
  transition: transform 180ms ease, filter 180ms ease;
}

.nl-hero-product:hover,
.nl-hero-product:focus-visible {
  transform: translateY(-0.35rem);
  filter: drop-shadow(0 1.6rem 2rem rgba(42, 37, 31, 0.22));
  outline: none;
}

.nl-hero-product img {
  display: block;
  width: 100%;
  height: auto;
}

.nl-hero-product--burn {
  left: 3%;
  bottom: 13%;
  width: 18%;
  z-index: 6;
}

.nl-hero-product--breath {
  left: 12%;
  bottom: 13.5%;
  width: 25%;
  z-index: 5;
}

.nl-hero-product--krovoton {
  left: 36%;
  bottom: 10.5%;
  width: 18%;
  z-index: 7;
}

.nl-hero-product--sustavi {
  left: 47%;
  bottom: 10.5%;
  width: 17%;
  z-index: 6;
}

.nl-hero-product--cirkulitin {
  left: 58%;
  bottom: 10.5%;
  width: 16%;
  z-index: 5;
}

.nl-hero-product--miokardil {
  right: 10%;
  bottom: 11.5%;
  width: 16%;
  z-index: 6;
}

.nl-hero-product--hair-stim {
  right: 0;
  bottom: 11.5%;
  width: 16%;
  z-index: 4;
}

.nl-hero-product--hair-activator {
  right: 18%;
  bottom: 11.5%;
  width: 14%;
  z-index: 7;
}

.nl-category-list {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.55rem;
}

.nl-category-list__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.8rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(60,81,72,0.1);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.nl-category-list__item:hover,
.nl-category-list__item:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--nl-shadow-1);
  background: #fff;
  outline: none;
}

.nl-category-list__label {
  display: block;
  font-weight: 700;
  color: var(--nl-brand-deep);
  line-height: 1.2;
}

.nl-category-list__desc {
  display: block;
  margin-top: 0.25rem;
  color: var(--nl-muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.nl-category-list__count {
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(60,81,72,0.08);
  color: var(--nl-brand-deep);
  font-weight: 700;
  font-size: 0.85rem;
}

.nl-grid--collections {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nl-grid--benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nl-collection-card,
.nl-info-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(60,81,72,0.1);
  border-radius: var(--nl-radius-md);
  box-shadow: var(--nl-shadow-1);
}

.nl-collection-card {
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
}

.nl-collection-card__eyebrow {
  margin: 0;
  color: var(--nl-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nl-collection-card__title {
  margin: 0;
  font-family: var(--nl-font-heading);
  font-size: 1.15rem;
  line-height: 1.2;
}

.nl-collection-card__text {
  margin: 0;
  color: var(--nl-muted);
  font-size: 0.92rem;
}

.nl-collection-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

.nl-collection-card__meta {
  color: var(--nl-muted);
  font-size: 0.86rem;
}

.nl-info-card {
  padding: 1rem;
}

.nl-info-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.nl-info-card p {
  margin: 0.55rem 0 0;
  color: var(--nl-muted);
  font-size: 0.92rem;
}

.nl-empty-state {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(60,81,72,0.1);
  border-radius: var(--nl-radius-md);
  padding: 1rem;
  box-shadow: var(--nl-shadow-1);
}

.nl-empty-state h3 {
  margin: 0;
  font-size: 1.05rem;
}

.nl-empty-state p {
  margin: 0.45rem 0 0;
  color: var(--nl-muted);
}

.nl-empty-state__actions {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.nl-chip-grid--collections {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.nl-chip--static {
  justify-content: flex-start;
  background: rgba(107, 142, 78, 0.1);
  border-color: rgba(107, 142, 78, 0.18);
  pointer-events: none;
}

.nl-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.nl-steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.9rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(60,81,72,0.1);
  border-radius: var(--nl-radius-md);
  box-shadow: var(--nl-shadow-1);
}

.nl-steps__num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--nl-brand) 0%, var(--nl-brand-deep) 100%);
  color: #fff;
  font-weight: 800;
}

.nl-steps__item h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.nl-steps__item p {
  margin: 0.35rem 0 0;
  color: var(--nl-muted);
}

.nl-cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  background:
    radial-gradient(500px 250px at 100% 0%, rgba(107,142,78,0.18), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
  border: 1px solid rgba(60,81,72,0.1);
  border-radius: var(--nl-radius-lg);
  box-shadow: var(--nl-shadow-1);
}

.nl-cta-band__title {
  margin: 0;
  font-family: var(--nl-font-heading);
  font-size: clamp(1.2rem, 1vw + 1rem, 1.8rem);
  line-height: 1.15;
}

.nl-cta-band__text {
  margin: 0.5rem 0 0;
  color: var(--nl-muted);
  max-width: 56ch;
}

.nl-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.nl-pagination {
  margin-top: 1rem;
}

.nl-pagination__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.nl-pagination__item a,
.nl-pagination__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(60,81,72,0.12);
  background: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 600;
}

.nl-pagination__item.is-current span,
.nl-pagination__item a:hover,
.nl-pagination__item a:focus-visible {
  background: rgba(107,142,78,0.14);
  color: var(--nl-brand-deep);
  outline: none;
}

/* WooCommerce normalization */
.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  color: var(--nl-muted);
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--nl-brand-deep);
  text-decoration: none;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(60,81,72,0.1);
  border-radius: var(--nl-radius-md);
  padding: 0.8rem;
  box-shadow: var(--nl-shadow-1);
}

.woocommerce ul.products li.product a img {
  border-radius: 8px;
  margin-bottom: 0.75rem;
  background: #f7f7f2;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .cart .button,
.woocommerce .cart input.button,
.woocommerce .checkout-button.button.alt {
  border-radius: 10px;
  border: 1px solid transparent;
  background: linear-gradient(160deg, var(--nl-brand) 0%, var(--nl-brand-deep) 100%);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1rem;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .checkout-button.button.alt:hover {
  background: var(--nl-brand-deep);
  color: #fff;
}

.woocommerce .button.alt {
  background: var(--nl-brand-deep);
}

.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product form.cart .single_add_to_cart_button.button,
.woocommerce div.product form.cart .single_add_to_cart_button.button.alt {
  background: #6b8e4e !important;
  border-color: #6b8e4e !important;
  color: #fff !important;
  border-radius: 8px;
  box-shadow: none;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover,
.woocommerce div.product form.cart .single_add_to_cart_button:focus-visible {
  background: #567841 !important;
  border-color: #567841 !important;
  color: #fff !important;
}

.woocommerce-checkout #payment #place_order,
.woocommerce-checkout button#place_order,
.woocommerce button.button.alt#place_order {
  background: #6b8e4e !important;
  border-color: #6b8e4e !important;
  color: #fff !important;
  border-radius: 8px;
  box-shadow: none;
}

.woocommerce-checkout #payment #place_order:hover,
.woocommerce-checkout #payment #place_order:focus-visible,
.woocommerce-checkout button#place_order:hover,
.woocommerce-checkout button#place_order:focus-visible {
  background: #567841 !important;
  border-color: #567841 !important;
  color: #fff !important;
}

.woocommerce div.product .woocommerce-product-rating,
.woocommerce div.product #reviews {
  display: none;
}

.woocommerce div.product {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(60,81,72,0.1);
  border-radius: var(--nl-radius-lg);
  padding: 1rem;
  box-shadow: var(--nl-shadow-1);
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img,
.woocommerce div.product div.images img {
  border-radius: 8px;
  background: #fafaf7;
}

.woocommerce div.product .product_title {
  font-family: var(--nl-font-heading);
  font-weight: var(--nl-font-weight-heading);
  line-height: 1.15;
}

.nl-section__head h2,
.nl-section-title,
.nl-card__title,
.nl-collection-card__title,
.nl-info-card h3,
.nl-empty-state h3,
.nl-steps__item h3,
.nl-cta-band__title,
.nl-footer__title {
  font-weight: var(--nl-font-weight-heading);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: var(--nl-brand-deep);
  font-weight: 800;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.woocommerce div.product form.cart .quantity {
  margin: 0;
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: 1rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 8px 8px 0 0;
}

.woocommerce table.shop_table {
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--nl-shadow-1);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: rgba(60, 81, 72, 0.1);
}

.woocommerce table.shop_table th {
  padding: 0.95rem;
  color: var(--nl-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.woocommerce table.shop_table td {
  padding: 1rem 0.95rem;
  vertical-align: middle;
}

.woocommerce-cart table.cart img {
  width: 5.5rem;
  border-radius: 10px;
  background: #f7f8f4;
}

.woocommerce-cart table.cart td.product-name a {
  color: var(--nl-ink);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.woocommerce-cart table.cart td.product-name a:hover,
.woocommerce-cart table.cart td.product-name a:focus-visible {
  color: var(--nl-brand-deep);
  text-decoration: underline;
  outline: none;
}

.woocommerce-cart table.cart .product-remove a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: rgba(164, 63, 63, 0.08);
  color: var(--nl-danger) !important;
  font-size: 1.25rem;
  line-height: 1;
}

.woocommerce-cart table.cart .product-remove a.remove:hover,
.woocommerce-cart table.cart .product-remove a.remove:focus-visible {
  background: var(--nl-danger);
  color: #fff !important;
  outline: none;
}

.woocommerce-cart table.cart td.actions {
  background: rgba(248, 247, 242, 0.85);
}

.woocommerce-cart table.cart td.actions .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  min-height: 2.75rem;
  border-radius: 8px;
  border: 1px solid rgba(60, 81, 72, 0.16);
  padding: 0.65rem 0.85rem;
}

.woocommerce-cart .cart-collaterals {
  margin-top: 1rem;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  line-height: 1.2;
  text-align: center;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout .woocommerce-checkout-review-order {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(60,81,72,0.1);
  border-radius: var(--nl-radius-md);
  padding: 1rem;
  box-shadow: var(--nl-shadow-1);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .quantity .qty,
.search-field {
  border-radius: 8px;
  border: 1px solid rgba(60,81,72,0.16);
  background: #fff;
  padding: 0.7rem 0.85rem;
}

.woocommerce .quantity {
  display: inline-flex;
  align-items: center;
}

.nl-qty-stepper {
  display: inline-grid;
  grid-template-columns: 2.8rem minmax(3.2rem, 4.2rem) 2.8rem;
  align-items: stretch;
  min-height: 2.8rem;
  overflow: hidden;
  border: 1px solid rgba(60, 81, 72, 0.18);
  border-radius: 10px;
  background: #fff;
}

.nl-qty-stepper__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  min-height: 2.8rem;
  border: 0;
  background: rgba(107, 142, 78, 0.1);
  color: var(--nl-brand-deep);
  cursor: pointer;
  font: inherit;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.nl-qty-stepper__btn:hover,
.nl-qty-stepper__btn:focus-visible {
  background: rgba(107, 142, 78, 0.18);
  outline: none;
}

.woocommerce .quantity .nl-qty-stepper .qty {
  width: 100%;
  min-height: 2.8rem;
  border: 0;
  border-inline: 1px solid rgba(60, 81, 72, 0.12);
  border-radius: 0;
  padding: 0.35rem;
  color: var(--nl-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

.woocommerce .quantity .nl-qty-stepper .qty::-webkit-outer-spin-button,
.woocommerce .quantity .nl-qty-stepper .qty::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 8px;
  border: 1px solid rgba(60,81,72,0.12);
  background: rgba(255,255,255,0.95);
}

.nl-footer {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(60,81,72,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.95));
}

.nl-footer__inner {
  padding: 1.5rem 0 1rem;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(640px, 1.45fr);
  gap: 2rem;
}

.nl-footer__brand {
  min-width: 0;
}

.nl-brand--footer .nl-brand__logo {
  width: 72px;
  height: 72px;
}

.nl-footer__note {
  margin: 0.85rem 0 0;
  color: var(--nl-muted);
  max-width: 54ch;
  font-size: 0.93rem;
}

.nl-footer__cols {
  display: grid;
  grid-template-columns: minmax(180px, 1.05fr) minmax(150px, 0.95fr) minmax(170px, 1fr);
  gap: 1.6rem;
  align-content: start;
}

.nl-footer__title {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  color: var(--nl-brand-deep);
}

.nl-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.nl-footer__links a {
  color: var(--nl-muted);
  text-decoration: none;
}

.nl-footer__links a:hover,
.nl-footer__links a:focus-visible {
  color: var(--nl-brand-deep);
  text-decoration: underline;
  outline: none;
}

.nl-footer__bottom {
  border-top: 1px solid rgba(60,81,72,0.08);
}

.nl-footer__bottom-inner {
  padding: 0.75rem 0 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--nl-muted);
  font-size: 0.85rem;
}

.nl-footer__bottom-inner p {
  margin: 0;
}

/* Tidy common WordPress blocks */
.wp-block-image,
figure {
  max-width: 100%;
}

.alignwide,
.alignfull {
  max-width: 100%;
}

.wp-caption {
  max-width: 100%;
}

/* Legacy Tilda-inspired home page */
body {
  background: #f2f1ed;
  color: #000;
}

.nl-main {
  padding-top: 5.8rem;
}

.nl-header {
  background: rgba(242, 241, 237, 0.94);
  backdrop-filter: none;
  border-bottom: 0;
}

.nl-header__inner {
  min-height: 5.8rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.nl-header .nl-container {
  width: min(1360px, calc(100% - 2rem));
}

.nl-brand__logo {
  width: 54px;
  height: 54px;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.nl-brand__name {
  font-size: 1rem;
  font-weight: 800;
}

.nl-brand__tag {
  font-size: 0.68rem;
  letter-spacing: 0;
}

.nl-menu {
  gap: 0.15rem;
  flex-wrap: nowrap;
}

.nl-menu__link {
  border-radius: 999px;
  color: #202820;
  font-size: 0.8rem;
  padding: 0.42rem 0.5rem;
  font-weight: 600;
  white-space: nowrap;
}

.nl-menu__link:hover,
.nl-menu__link:focus-visible,
.nl-menu__link.is-current {
  background: rgba(107, 142, 78, 0.11);
  color: #000;
}

.nl-header__action {
  min-height: 2.25rem;
  border-radius: 999px;
  background: transparent;
  border-color: rgba(107, 142, 78, 0.24);
  box-shadow: none;
  font-size: 0.86rem;
}

.nl-header__action--wa {
  width: 2.25rem;
  padding: 0;
  justify-content: center;
  background: var(--nl-brand);
  color: #fff;
  border-color: var(--nl-brand);
  font-size: 0.78rem;
}

.nl-hero--landing {
  padding: 0;
  background: #f2f1ed;
}

.nl-hero--landing::before {
  display: none;
}

.nl-hero--landing .nl-container {
  width: min(1440px, calc(100% - 2rem));
}

.nl-hero__landing-shell {
  padding: clamp(2rem, 5vw, 5.6rem) 0 clamp(3rem, 6vw, 6rem);
}

.nl-hero__landing-grid {
  grid-template-columns: minmax(22rem, 0.9fr) minmax(32rem, 1.1fr);
  min-height: min(43vw, 42rem);
  gap: 1.5rem;
}

.nl-hero__content {
  padding-left: clamp(0rem, 1vw, 1.2rem);
  max-width: 46rem;
}

.nl-hero--landing .nl-kicker {
  display: none;
}

.nl-hero--landing .nl-hero__title {
  max-width: 18ch;
  font-size: clamp(2.55rem, 3.45vw, 4.35rem);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 800;
}

.nl-hero--landing .nl-hero__text {
  max-width: 38rem;
  margin-top: 2rem;
  color: #000;
  font-size: clamp(0.92rem, 0.9vw, 1rem);
  line-height: 1.45;
}

.nl-btn,
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .cart .button,
.woocommerce .cart input.button,
.woocommerce .checkout-button.button.alt {
  border-radius: 8px;
  background: #6b8e4e;
  box-shadow: none;
}

.nl-btn:hover,
.nl-btn:focus-visible {
  background: #567841;
  box-shadow: 0 0.8rem 1.8rem rgba(107, 142, 78, 0.20);
}

.nl-btn--ghost {
  background: #fff;
  color: #6b8e4e;
  border-color: #6b8e4e;
}

.nl-btn--ghost:hover,
.nl-btn--ghost:focus-visible {
  background: #f7faf4;
  color: #567841;
}

.nl-btn--hero {
  min-width: 13.5rem;
  min-height: 4.05rem;
  border-radius: 8px;
  font-size: 1rem;
}

.nl-hero__stage {
  min-height: clamp(24rem, 39vw, 40rem);
}

.nl-hero__pack {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 14%;
  display: block;
}

.nl-hero__pack img {
  display: block;
  width: min(100%, 52rem);
  margin-left: auto;
}

.nl-hero__dna--top {
  right: -4%;
  top: -4%;
  width: clamp(24rem, 44vw, 55rem);
  opacity: 0.42;
  transform: rotate(0deg);
}

.nl-hero__dna--middle {
  right: 5%;
  bottom: -7%;
  width: clamp(18rem, 30vw, 35rem);
  opacity: 0.48;
  transform: rotate(6deg);
}

.nl-section {
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.nl-section--tint {
  background: #f2f1ed;
}

.nl-section__head {
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: center;
}

.nl-section__head .nl-inline-link {
  position: absolute;
  right: max(1rem, calc((100% - var(--nl-container)) / 2));
}

.nl-section__head h2,
.nl-section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.12;
  font-weight: 800;
}

.nl-section-title--left {
  text-align: left;
}

.nl-inline-link {
  color: #3c5148;
}

.nl-legacy-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
}

.nl-legacy-tile {
  display: grid;
  gap: 1.2rem;
  color: #000;
  text-decoration: none;
}

.nl-legacy-tile__image {
  display: block;
  aspect-ratio: 278 / 407;
  overflow: hidden;
  background: #fff;
}

.nl-legacy-tile__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.nl-legacy-tile:hover img,
.nl-legacy-tile:focus-visible img {
  transform: scale(1.025);
}

.nl-legacy-tile__label {
  font-size: clamp(1.1rem, 1.2vw, 1.5rem);
  font-weight: 500;
}

.nl-social-band {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1160px;
  margin: 0 auto;
}

.nl-social-band__links {
  display: grid;
  gap: 1.1rem;
}

.nl-social-band__links a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #000;
  text-decoration: none;
}

.nl-social-band__links img {
  width: 40px;
  height: 40px;
}

.nl-social-band p {
  margin: 0;
  text-align: center;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  line-height: 1.35;
}

.nl-section--mitochondria {
  text-align: center;
}

.nl-section--mitochondria h2 {
  margin: 0 auto;
  max-width: 62rem;
  font-size: clamp(1.3rem, 1.9vw, 2rem);
  line-height: 1.35;
}

.nl-section--mitochondria p {
  margin: 2rem auto 0;
  max-width: 58rem;
  color: #26302a;
  font-size: clamp(1.05rem, 1.5vw, 1.55rem);
  line-height: 1.55;
}

.nl-cert-strip {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 2rem 0 0.75rem;
  scroll-snap-type: x mandatory;
}

.nl-cert-card {
  flex: 0 0 min(26rem, 70vw);
  height: 31rem;
  display: grid;
  place-items: center;
  background: #fff;
  scroll-snap-align: center;
  text-decoration: none;
}

.nl-cert-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.nl-section--ingredients {
  padding-top: clamp(5rem, 9vw, 11rem);
}

.nl-ingredient-grid {
  max-width: 1110px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.nl-ingredient-card {
  min-height: 16rem;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.30)),
    rgba(107, 142, 78, 0.14);
}

.nl-ingredient-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.30)),
    rgba(178, 197, 178, 0.25);
}

.nl-ingredient-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.30)),
    rgba(211, 171, 146, 0.26);
}

.nl-ingredient-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
}

.nl-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: -0.75rem auto 2rem;
  overflow-x: auto;
}

.nl-tabs a {
  flex: 0 0 auto;
  padding: 0.35rem 0;
  color: #777;
  text-decoration: none;
  font-size: 0.94rem;
  border-bottom: 1px solid transparent;
}

.nl-tabs a.is-active {
  color: #000;
  border-color: #6b8e4e;
  font-weight: 700;
}

.nl-tabs--news {
  gap: 0.6rem;
  margin-top: -0.5rem;
}

.nl-tabs--news a {
  border: 1px solid #000;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  color: #000;
  background: #fff;
}

.nl-tabs--news a.is-active {
  background: #000;
  color: #fff;
}

.nl-grid--products {
  gap: clamp(2rem, 3vw, 3rem) clamp(1.2rem, 2vw, 2rem);
}

.nl-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.nl-card__media {
  aspect-ratio: 1 / 1.12;
  background: #fff;
}

.nl-card__body {
  padding: 1rem 0 0;
}

.nl-card--product .nl-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nl-card__title {
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 800;
}

.nl-card__excerpt {
  color: #000;
  font-size: 0.84rem;
  line-height: 1.25;
}

.nl-card__row {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  justify-content: stretch;
}

.nl-card--product .nl-card__row {
  margin-top: auto;
}

.nl-card__price {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
}

.nl-card__price del {
  color: #a7a7a7;
  opacity: 1;
}

.nl-card__actions {
  display: grid;
  gap: 0.6rem;
  justify-items: start;
}

.nl-card__actions .nl-btn {
  min-width: 6.7rem;
  padding: 0.52rem 1rem;
}

.nl-card--post {
  background: #fff;
}

.nl-card--post .nl-card__media {
  aspect-ratio: 1.45 / 1;
}

.nl-card--post .nl-card__body {
  padding: 1.6rem;
}

.nl-card__eyebrow {
  display: inline-flex;
  justify-self: start;
  width: auto;
  padding: 0.25rem 0.45rem;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
}

.nl-section--about {
  position: relative;
  overflow: hidden;
}

.nl-section--about::before {
  content: "";
  position: absolute;
  left: -9rem;
  top: 3rem;
  width: 31rem;
  height: 31rem;
  border: 5px solid rgba(211, 171, 146, 0.75);
  border-radius: 999px;
}

.nl-about-flow {
  position: relative;
  max-width: 42rem;
  margin: 2.5rem auto 0;
  display: grid;
  gap: 2rem;
}

.nl-about-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1rem;
  bottom: -1rem;
  width: 3px;
  background: rgba(211, 171, 146, 0.72);
  transform: translateX(-50%);
}

.nl-about-flow p {
  position: relative;
  margin: 0;
  padding: 1.35rem 2rem;
  background: #fff;
  border: 1px solid #b2c5b2;
  border-radius: 12px;
  box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.12);
  line-height: 1.35;
}

.nl-about-flow p::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2.25rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: #b2c5b2;
  transform: translateX(-50%);
}

.nl-section--faq {
  padding-bottom: 5rem;
}

.nl-faq-list {
  max-width: 46rem;
  margin: 2rem 0 0 auto;
}

.nl-faq-list details {
  border-top: 1px solid #6b8e4e;
}

.nl-faq-list details:last-child {
  border-bottom: 1px solid #6b8e4e;
}

.nl-faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  font-size: 1.28rem;
  font-weight: 500;
}

.nl-faq-list summary::-webkit-details-marker {
  display: none;
}

.nl-faq-list summary::after {
  content: "+";
  color: #6b8e4e;
  font-size: 1.6rem;
  line-height: 1;
}

.nl-faq-list details[open] summary::after {
  content: "-";
}

.nl-faq-list p,
.nl-faq-list ol {
  margin: 0 0 1.5rem;
  color: #202820;
}

.nl-footer {
  margin-top: 0;
  background: #f2f1ed;
  border-top: 0;
}

.nl-footer__inner {
  border-top: 1px solid rgba(107, 142, 78, 0.16);
}

/* Mobile */
@media (max-width: 1100px) {
  .nl-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .nl-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nl-header__actions {
    display: none;
  }

  .nl-header__mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    min-width: 0;
  }

  .nl-nav {
    position: fixed;
    top: 5.4rem;
    left: 0.75rem;
    right: 0.75rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(60,81,72,0.14);
    border-radius: 10px;
    box-shadow: var(--nl-shadow-2);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    max-height: calc(100dvh - 6.2rem);
    overflow: auto;
  }

  body.nl-nav-open .nl-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nl-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nl-menu__link {
    justify-content: flex-start;
  }

  .nl-hero__inner {
    grid-template-columns: 1fr;
  }

  .nl-hero__landing-grid {
    grid-template-columns: 1fr;
  }

  .nl-hero__landing-shell {
    padding: 1.35rem;
    padding-inline: 0;
    border-radius: 0;
  }

  .nl-hero__content {
    max-width: 100%;
  }

  .nl-hero__stage {
    min-height: 33rem;
    margin-top: 0.5rem;
  }

  .nl-hero__dna--top {
    width: 14rem;
    right: -2%;
  }

  .nl-hero__dna--middle {
    right: -10%;
    bottom: 4%;
    width: 44rem;
  }

  .nl-hero__dna--bottom {
    left: 10%;
    width: 22rem;
  }

  .nl-hero-product--burn {
    left: 5%;
    width: 16%;
  }

  .nl-hero-product--breath {
    left: 15%;
    width: 22%;
  }

  .nl-hero-product--krovoton {
    left: 37%;
    width: 17%;
  }

  .nl-hero-product--sustavi {
    left: 48%;
    width: 16%;
  }

  .nl-hero-product--cirkulitin {
    left: 59%;
    width: 15%;
  }

  .nl-hero-product--miokardil {
    right: 9%;
    width: 15%;
  }

  .nl-hero-product--hair-activator {
    right: 18%;
    width: 13%;
  }

  .nl-hero-product--hair-stim {
    right: 0;
    width: 15%;
  }

  .nl-grid--products,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nl-grid--posts,
  .nl-grid--collections,
  .nl-grid--benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nl-chip-grid--collections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nl-cta-band {
    grid-template-columns: 1fr;
  }

  .nl-cta-band__actions {
    justify-content: flex-start;
  }

  .nl-footer__inner {
    grid-template-columns: 1fr;
  }

  .nl-footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nl-main {
    padding-top: 5rem;
  }

  .nl-header__inner {
    gap: 0.6rem;
    min-height: 4.8rem;
  }

  .nl-brand__tag {
    display: none;
  }

  .nl-brand__name {
    font-size: 1rem;
  }

  .nl-section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .nl-grid--products,
  .nl-grid--posts,
  .nl-grid--collections,
  .nl-grid--benefits,
  .woocommerce ul.products,
  .nl-chip-grid,
  .nl-chip-grid--collections,
  .nl-footer__cols {
    grid-template-columns: 1fr;
  }

  .nl-entry-content,
  .nl-page-hero .nl-container,
  .nl-page-hero .nl-container--narrow,
  .nl-hero__inner > * {
    border-radius: 10px;
    padding: 0.9rem;
  }

  .woocommerce div.product {
    padding: 0.75rem;
  }

  .nl-category-list__item {
    grid-template-columns: 1fr;
  }

  .nl-category-list__count {
    justify-self: start;
  }

  .nl-hero--landing {
    padding-bottom: 1.1rem;
  }

  .nl-hero--landing .nl-container {
    width: min(100%, calc(100% - 1rem));
  }

  .nl-hero__landing-shell {
    padding: 1.1rem;
    padding-inline: 0;
    border-radius: 0;
  }

  .nl-hero--landing .nl-hero__title {
    font-size: clamp(2.45rem, 11vw, 4rem);
    line-height: 0.94;
  }

  .nl-hero--landing .nl-hero__text {
    margin-top: 1.15rem;
    font-size: 1rem;
    line-height: 1.45;
  }

  .nl-hero--landing .nl-hero__actions {
    margin-top: 1.35rem;
  }

  .nl-btn--hero {
    min-width: 0;
    min-height: 4.25rem;
    width: min(100%, 14rem);
    padding-inline: 1.5rem;
    border-radius: 10px;
  }

  .nl-hero__stage {
    min-height: 24rem;
    margin-top: 0.8rem;
  }

  .nl-hero__dna--top {
    width: 8.5rem;
    top: -4%;
    right: -4%;
    opacity: 0.18;
  }

  .nl-hero__dna--middle {
    width: 28rem;
    right: -18%;
    bottom: 3%;
    opacity: 0.34;
  }

  .nl-hero__dna--bottom {
    width: 13rem;
    left: 6%;
    bottom: -12%;
    opacity: 0.24;
  }

  .nl-hero__podium--left {
    left: 2%;
    width: 32%;
    height: 24%;
  }

  .nl-hero__podium--center {
    left: 28%;
    width: 40%;
    height: 15%;
  }

  .nl-hero__podium--right {
    right: 1%;
    width: 30%;
    height: 18%;
  }

  .nl-hero-product--burn {
    display: none;
  }

  .nl-hero-product--breath {
    left: 10%;
    bottom: 13%;
    width: 27%;
  }

  .nl-hero-product--krovoton {
    left: 34%;
    bottom: 10%;
    width: 20%;
  }

  .nl-hero-product--sustavi {
    left: 50%;
    bottom: 10%;
    width: 18%;
  }

  .nl-hero-product--cirkulitin {
    left: 62%;
    bottom: 10%;
    width: 17%;
  }

  .nl-hero-product--miokardil {
    right: 10%;
    bottom: 11%;
    width: 18%;
  }

  .nl-hero-product--hair-stim {
    right: -1%;
    bottom: 11%;
    width: 17%;
  }

  .nl-hero-product--hair-activator {
    display: none;
  }

  .nl-steps__item {
    grid-template-columns: 1fr;
  }

  .nl-footer__bottom-inner {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .nl-main {
    padding-top: 5rem;
  }

  .nl-header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: 5rem;
  }

  .nl-nav {
    top: 5rem;
  }

  .nl-hero__landing-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .nl-hero__content {
    max-width: 45rem;
    margin: 0 auto;
    text-align: center;
  }

  .nl-hero--landing .nl-hero__title {
    max-width: 16ch;
    margin: 0 auto;
    line-height: 1.08;
  }

  .nl-hero--landing .nl-hero__text {
    margin-inline: auto;
  }

  .nl-hero__actions {
    justify-content: center;
  }

  .nl-hero__stage {
    min-height: 30rem;
  }

  .nl-hero__pack {
    top: 6%;
  }

  .nl-hero__pack img {
    margin-inline: auto;
  }

  .nl-legacy-tiles,
  .nl-grid--products,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nl-social-band {
    grid-template-columns: 1fr;
  }

  .nl-ingredient-grid {
    grid-template-columns: 1fr;
  }

  .nl-section__head .nl-inline-link {
    position: static;
  }
}

@media (max-width: 720px) {
  .nl-header__actions {
    display: none;
  }

  .nl-header__mobile-actions {
    display: flex;
  }

  .nl-brand__logo {
    width: 72px;
    height: 72px;
  }

  .nl-hero__landing-shell {
    padding-top: 2.4rem;
  }

  .nl-hero--landing .nl-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  .nl-hero--landing .nl-hero__text {
    font-size: 0.86rem;
  }

  .nl-btn--hero {
    width: 100%;
    min-height: 3.35rem;
  }

  .nl-hero__stage {
    min-height: 15.5rem;
  }

  .nl-hero__dna--top {
    width: 23rem;
    right: -38%;
    top: 0;
    opacity: 0.28;
  }

  .nl-hero__dna--middle {
    width: 18rem;
    left: -26%;
    right: auto;
    bottom: -9%;
    opacity: 0.32;
  }

  .nl-hero__pack {
    top: 0;
  }

  .nl-legacy-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 0.85rem;
  }

  .nl-legacy-tile__label {
    font-size: 0.9rem;
  }

  .nl-social-band p {
    font-size: 0.95rem;
  }

  .nl-social-band__links {
    justify-items: center;
  }

  .nl-section__head h2,
  .nl-section-title {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
  }

  .nl-section--mitochondria h2 {
    font-size: 1rem;
  }

  .nl-section--mitochondria p {
    font-size: 0.9rem;
  }

  .nl-cert-card {
    flex-basis: 80vw;
    height: 23rem;
  }

  .nl-ingredient-card {
    min-height: 12rem;
    padding: 1.25rem;
  }

  .nl-grid--products,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
  }

  .nl-card__title {
    font-size: 0.82rem;
  }

  .nl-card__excerpt {
    font-size: 0.74rem;
  }

  .nl-card__price {
    font-size: 1.05rem;
  }

  .nl-card__actions .nl-btn {
    width: 100%;
    min-width: 0;
    font-size: 0.72rem;
  }

  .nl-tabs {
    justify-content: flex-start;
    gap: 1.4rem;
  }

  .nl-tabs--news {
    gap: 0.45rem;
  }

  .nl-about-flow {
    gap: 1.75rem;
  }

  .nl-about-flow p {
    padding: 1rem;
    font-size: 0.82rem;
  }

  .nl-faq-list {
    margin-left: 0;
  }

  .nl-faq-list summary {
    font-size: 1.1rem;
  }
}

body {
  font-size: var(--nl-font-size-body);
  font-weight: var(--nl-font-weight-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.nl-hero__title,
.nl-page-hero__title,
.nl-section__head h2,
.nl-section-title,
.nl-card__title,
.nl-collection-card__title,
.nl-info-card h3,
.nl-empty-state h3,
.nl-steps__item h3,
.nl-cta-band__title,
.nl-footer__title,
.woocommerce div.product .product_title {
  font-weight: var(--nl-font-weight-heading);
}

.naturalabs-cdek-picker {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(107, 142, 78, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
}

.naturalabs-cdek-picker label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--nl-forest);
  font-size: 0.9rem;
  font-weight: 600;
}

.naturalabs-cdek-picker__select {
  width: 100%;
  max-width: 100%;
  min-height: 3.2rem;
  border: 1px solid rgba(107, 142, 78, 0.35);
  border-radius: 8px;
  background: #fff;
  color: var(--nl-text);
  font: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.8rem;
}

.naturalabs-cdek-picker__select:focus {
  border-color: var(--nl-forest);
  box-shadow: 0 0 0 3px rgba(107, 142, 78, 0.16);
  outline: none;
}

body.naturalabs-cdek-map-open {
  overflow: hidden;
}

.naturalabs-cdek-map-modal {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(30, 38, 27, 0.56);
}

.naturalabs-cdek-map {
  width: min(1120px, 100%);
  height: min(760px, calc(100vh - 2rem));
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(20, 28, 18, 0.28);
}

.naturalabs-cdek-map__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(107, 142, 78, 0.2);
}

.naturalabs-cdek-map__title {
  color: var(--nl-forest);
  font-family: var(--nl-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
}

.naturalabs-cdek-map__close {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(107, 142, 78, 0.1);
  color: var(--nl-forest);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.naturalabs-cdek-map__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 34%);
  height: calc(100% - 4rem);
}

.naturalabs-cdek-map__canvas {
  min-height: 420px;
  background: #eef2ec;
}

.naturalabs-cdek-map__list {
  overflow: auto;
  border-left: 1px solid rgba(107, 142, 78, 0.2);
  background: #fbfcf8;
}

.naturalabs-cdek-map__point {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(107, 142, 78, 0.16);
  background: transparent;
  color: var(--nl-text);
  cursor: pointer;
  padding: 0.9rem 1rem;
  text-align: left;
}

.naturalabs-cdek-map__point:hover,
.naturalabs-cdek-map__point:focus {
  background: rgba(107, 142, 78, 0.1);
  outline: none;
}

.naturalabs-cdek-map__point span,
.naturalabs-cdek-map__point small {
  display: block;
}

.naturalabs-cdek-map__point span {
  font-weight: 600;
}

.naturalabs-cdek-map__point small {
  margin-top: 0.25rem;
  color: rgba(46, 58, 41, 0.72);
  font-size: 0.82rem;
  line-height: 1.35;
}

.naturalabs-cdek-map__popup {
  max-width: 260px;
}

.naturalabs-cdek-map__popup p {
  margin: 0.35rem 0 0.65rem;
}

.naturalabs-cdek-map__popup button {
  border: 0;
  border-radius: 999px;
  background: var(--nl-forest);
  color: #fff;
  cursor: pointer;
  padding: 0.55rem 0.85rem;
}

.nl-manufacturer-page {
  overflow: hidden;
}

.nl-manufacturer-hero {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, rgba(107, 142, 78, 0.14), rgba(255, 255, 255, 0.42));
}

.nl-manufacturer-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(107, 142, 78, 0.18);
}

.nl-manufacturer-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.nl-manufacturer-hero__content h1 {
  max-width: 780px;
  margin: 0.3rem 0 1.15rem;
  color: var(--nl-ink);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
}

.nl-manufacturer-hero__content p {
  max-width: 720px;
  margin: 0;
  color: var(--nl-muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.nl-manufacturer-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.nl-manufacturer-hero__media {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.nl-manufacturer-hero__media img {
  width: min(100%, 340px);
  height: auto;
  border-radius: 10px;
  background: var(--nl-surface);
  box-shadow: var(--nl-shadow-2);
}

.nl-manufacturer-hero__caption {
  width: min(100%, 340px);
  border-left: 3px solid var(--nl-brand);
  padding-left: 1rem;
}

.nl-manufacturer-hero__caption strong,
.nl-manufacturer-hero__caption span {
  display: block;
}

.nl-manufacturer-hero__caption strong {
  color: var(--nl-brand-deep);
  font-family: var(--nl-font-heading);
  font-size: 1rem;
}

.nl-manufacturer-hero__caption span {
  color: var(--nl-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.nl-manufacturer-facts {
  padding-top: clamp(2.25rem, 5vw, 4rem);
}

.nl-manufacturer-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(107, 142, 78, 0.18);
  border-radius: 10px;
  background: rgba(107, 142, 78, 0.18);
}

.nl-manufacturer-stat {
  min-height: 9rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
}

.nl-manufacturer-stat strong,
.nl-manufacturer-stat span {
  display: block;
}

.nl-manufacturer-stat strong {
  color: var(--nl-brand);
  font-family: var(--nl-font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
}

.nl-manufacturer-stat span {
  margin-top: 0.75rem;
  color: var(--nl-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.nl-manufacturer-columns,
.nl-manufacturer-publications {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.nl-manufacturer-panel,
.nl-manufacturer-publications article {
  border: 1px solid rgba(107, 142, 78, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(1.15rem, 2.6vw, 1.7rem);
}

.nl-manufacturer-panel h3,
.nl-manufacturer-publications h3 {
  margin: 0 0 0.75rem;
  color: var(--nl-brand-deep);
  font-size: 1.08rem;
  line-height: 1.25;
}

.nl-manufacturer-panel p,
.nl-manufacturer-publications p {
  margin: 0 0 1rem;
  color: var(--nl-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.nl-manufacturer-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.nl-manufacturer-feature h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.nl-manufacturer-feature__text {
  display: grid;
  gap: 1rem;
}

.nl-manufacturer-feature__text p {
  margin: 0;
  color: var(--nl-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.nl-manufacturer-timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(107, 142, 78, 0.2);
}

.nl-manufacturer-timeline__item {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: 1.5rem;
  border-bottom: 1px solid rgba(107, 142, 78, 0.2);
  padding: 1.15rem 0;
}

.nl-manufacturer-timeline__item time {
  color: var(--nl-brand);
  font-family: var(--nl-font-heading);
  font-weight: 600;
}

.nl-manufacturer-timeline__item p {
  margin: 0;
  color: var(--nl-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.nl-manufacturer-publications {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nl-main--front .nl-hero--landing {
  overflow: hidden;
  padding: clamp(1.5rem, 3.5vw, 3.5rem) 0 clamp(2rem, 4vw, 4rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(229, 237, 220, 0.58)),
    var(--nl-bg);
}

.nl-main--front .nl-hero--landing .nl-container {
  width: min(1320px, calc(100% - 2rem));
}

.nl-main--front .nl-hero__landing-shell {
  padding: 0;
}

.nl-main--front .nl-hero__landing-grid {
  display: grid;
  grid-template-columns: minmax(520px, 60%) minmax(390px, 40%);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  min-height: auto;
}

.nl-main--front .nl-hero__content {
  max-width: 560px;
  padding: 0;
  text-align: left;
}

.nl-main--front .nl-hero--landing .nl-kicker {
  display: none;
  margin: 0 0 0.8rem;
  color: var(--nl-brand);
}

.nl-main--front .nl-hero--landing .nl-hero__title {
  max-width: 19ch;
  margin: 0;
  color: var(--nl-ink);
  font-size: clamp(2.25rem, 2.85vw, 3.35rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.nl-main--front .nl-hero--landing .nl-hero__text {
  max-width: 31rem;
  margin: 1.2rem 0 0;
  color: var(--nl-muted);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.52;
}

.nl-main--front .nl-hero--landing .nl-hero__actions {
  justify-content: flex-start;
  margin-top: 1.55rem;
}

.nl-main--front .nl-hero__stage {
  position: relative;
  min-height: clamp(25rem, 36vw, 34rem);
}

.nl-main--front .nl-hero__pack {
  position: absolute;
  z-index: 3;
  inset: 50% auto auto 50%;
  width: min(100%, 780px);
  transform: translate(-48%, -47%);
}

.nl-main--front .nl-hero__pack img {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.nl-main--front .nl-hero__dna {
  mix-blend-mode: multiply;
  pointer-events: none;
}

.nl-main--front .nl-hero__dna--top {
  top: 2%;
  right: -6%;
  width: clamp(18rem, 34vw, 43rem);
  opacity: 0.22;
  transform: rotate(2deg);
}

.nl-main--front .nl-hero__dna--middle {
  right: 12%;
  bottom: -10%;
  width: clamp(15rem, 22vw, 28rem);
  opacity: 0.25;
  transform: rotate(9deg);
}

@media (max-width: 1100px) {
  .nl-main--front .nl-hero__landing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nl-main--front .nl-hero__content {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .nl-main--front .nl-hero--landing .nl-hero__title,
  .nl-main--front .nl-hero--landing .nl-hero__text {
    margin-inline: auto;
  }

  .nl-main--front .nl-hero--landing .nl-hero__actions {
    justify-content: center;
  }

  .nl-main--front .nl-hero__stage {
    min-height: clamp(23rem, 52vw, 32rem);
  }

  .nl-main--front .nl-hero__pack {
    width: min(92vw, 760px);
  }
}

@media (max-width: 720px) {
  .nl-main--front .nl-hero--landing {
    padding: 1.8rem 0 2.25rem;
  }

  .nl-main--front .nl-hero--landing .nl-container {
    width: min(100%, calc(100% - 1.25rem));
  }

  .nl-main--front .nl-hero--landing .nl-kicker {
    margin-bottom: 0.75rem;
  }

  .nl-main--front .nl-hero--landing .nl-hero__title {
    max-width: 17ch;
    font-size: clamp(1.75rem, 7.6vw, 2.35rem);
    line-height: 1.08;
  }

  .nl-main--front .nl-hero--landing .nl-hero__text {
    margin-top: 1rem;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .nl-main--front .nl-btn--hero {
    width: min(100%, 16rem);
    min-height: 3.35rem;
  }

  .nl-main--front .nl-hero__stage {
    min-height: clamp(14rem, 60vw, 21rem);
    margin-top: 0;
  }

  .nl-main--front .nl-hero__pack {
    width: min(106vw, 33rem);
    transform: translate(-50%, -45%);
  }

  .nl-main--front .nl-hero__dna--top {
    top: 1rem;
    right: -34%;
    width: 22rem;
    opacity: 0.2;
  }

  .nl-main--front .nl-hero__dna--middle {
    left: -22%;
    right: auto;
    bottom: -1rem;
    width: 17rem;
    opacity: 0.26;
  }
}

@media (max-width: 760px) {
  .naturalabs-cdek-picker {
    margin-top: 0.8rem;
    padding: 0.85rem;
  }

  .naturalabs-cdek-picker label {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .naturalabs-cdek-picker__select {
    min-height: 3.35rem;
    font-size: 1rem;
  }

  .naturalabs-cdek-map-modal {
    align-items: stretch;
    padding: 0;
  }

  .naturalabs-cdek-map {
    height: 100vh;
    border-radius: 0;
  }

  .naturalabs-cdek-map__body {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(320px, 58vh) minmax(0, 1fr);
  }

  .naturalabs-cdek-map__list {
    border-top: 1px solid rgba(107, 142, 78, 0.2);
    border-left: 0;
  }

  .nl-manufacturer-hero__grid,
  .nl-manufacturer-feature {
    grid-template-columns: 1fr;
  }

  .nl-manufacturer-hero {
    padding-top: 3.5rem;
  }

  .nl-manufacturer-stat-grid,
  .nl-manufacturer-columns,
  .nl-manufacturer-publications {
    grid-template-columns: 1fr;
  }

  .nl-manufacturer-stat {
    min-height: auto;
  }

  .nl-manufacturer-timeline__item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

/* Mobile polish pass: keep these overrides after legacy migration styles. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.nl-container,
.nl-container--narrow {
  min-width: 0;
}

.nl-card,
.nl-card__body,
.nl-entry-content,
.nl-woo-wrap,
.woocommerce {
  min-width: 0;
}

.nl-entry-content.has-tilda-content {
  overflow-x: auto;
  overflow-y: hidden;
}

.nl-entry-content.has-tilda-content .t-records,
.nl-entry-content.has-tilda-content [class*="t-container"],
.nl-entry-content.has-tilda-content [class*="t-col"],
.nl-entry-content.has-tilda-content [class*="t-width"] {
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.nl-entry-content.has-tilda-content [style*="width"] {
  max-width: 100% !important;
}

@media (max-width: 1100px) {
  html.nl-nav-open,
  body.nl-nav-open {
    overflow: hidden;
  }

  .nl-header {
    background: rgba(242, 241, 237, 0.98);
  }

  .nl-header .nl-container {
    width: min(100%, calc(100% - 1.25rem));
  }

  .nl-header__inner {
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
    gap: 0.45rem;
  }

  .nl-brand {
    max-width: min(48vw, 22rem);
  }

  .nl-header__mobile-actions {
    display: flex !important;
    grid-column: 2;
    justify-self: end;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    min-width: 0;
    position: relative;
    z-index: 1002;
  }

  .nl-header__quick-action--cart {
    order: 2;
  }

  .nl-nav-toggle {
    grid-column: 3;
    justify-self: end;
    position: relative;
    z-index: 1002;
  }

  .nl-brand__text-wrap,
  .nl-brand__name {
    min-width: 0;
  }

  .nl-brand__name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nl-nav {
    top: calc(5rem + env(safe-area-inset-top, 0px));
    left: 0.625rem;
    right: 0.625rem;
    width: auto;
    justify-self: stretch;
    z-index: 1001;
  }

  .nl-menu__link {
    min-height: 2.75rem;
    padding: 0.7rem 0.85rem;
    white-space: normal;
  }

  .nl-section__head {
    gap: 0.65rem;
  }

  .nl-grid--products,
  .woocommerce ul.products {
    gap: 1.4rem 1rem;
  }

  .nl-footer__inner {
    gap: 1.4rem;
  }
}

@media (max-width: 720px) {
  :root {
    --nl-font-size-body: 16px;
  }

  .nl-main {
    padding-top: 4.9rem;
  }

  .nl-header__inner {
    min-height: 4.9rem;
  }

  .nl-brand {
    gap: 0.55rem;
    max-width: 34vw;
  }

  .nl-brand__logo {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
  }

  .nl-nav-toggle {
    width: 2.6rem;
    height: 2.6rem;
  }

  .nl-header__mobile-actions {
    display: flex !important;
  }

  .nl-header__quick-action {
    min-height: 2.25rem;
    padding-inline: 0.55rem;
  }

  .nl-nav {
    top: 4.9rem;
    max-height: calc(100dvh - 5.6rem);
  }

  .nl-section {
    padding: 2rem 0;
  }

  .nl-section__head {
    align-items: stretch;
    margin-bottom: 1.15rem;
    text-align: left;
  }

  .nl-section__head h2,
  .nl-section-title {
    text-align: left;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .nl-inline-link {
    align-self: flex-start;
  }

  .nl-main--front .nl-hero--landing {
    padding: 1.25rem 0 1.75rem;
  }

  .nl-main--front .nl-hero--landing .nl-container {
    width: min(100%, calc(100% - 1rem));
  }

  .nl-main--front .nl-hero__landing-grid {
    gap: 1rem;
  }

  .nl-main--front .nl-hero--landing .nl-hero__title {
    max-width: 18ch;
    font-size: clamp(1.8rem, 8.2vw, 2.45rem);
    line-height: 1.1;
  }

  .nl-main--front .nl-hero--landing .nl-hero__text {
    max-width: 34rem;
    font-size: 0.95rem;
  }

  .nl-main--front .nl-hero__stage {
    min-height: clamp(12rem, 54vw, 18rem);
  }

  .nl-main--front .nl-hero__pack {
    width: min(100%, 31rem);
    transform: translate(-50%, -43%);
  }

  .nl-main--front .nl-hero__dna--top {
    right: -42%;
  }

  .nl-main--front .nl-hero__dna--middle {
    left: -28%;
  }

  .nl-btn,
  .woocommerce ul.products li.product .button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce #respond input#submit,
  .woocommerce .cart .button,
  .woocommerce .cart input.button,
  .woocommerce .checkout-button.button.alt {
    min-height: 2.75rem;
    padding: 0.68rem 0.9rem;
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .nl-btn--hero {
    width: min(100%, 17rem);
  }

  .nl-legacy-tiles {
    gap: 1.1rem 0.75rem;
  }

  .nl-legacy-tile {
    gap: 0.65rem;
  }

  .nl-legacy-tile__label {
    line-height: 1.2;
  }

  .nl-social-band {
    gap: 1rem;
  }

  .nl-social-band__links a {
    gap: 0.65rem;
    font-size: 0.95rem;
  }

  .nl-social-band p {
    text-align: center;
  }

  .nl-section--mitochondria h2,
  .nl-section--mitochondria p {
    text-align: left;
  }

  .nl-cert-strip {
    margin-inline: -0.5rem;
    padding: 1rem 0.5rem 0.5rem;
  }

  .nl-cert-card {
    flex-basis: min(78vw, 19rem);
    height: 18rem;
  }

  .nl-ingredient-grid {
    margin-top: 1.4rem;
    gap: 0.85rem;
  }

  .nl-ingredient-card {
    min-height: 9.5rem;
  }

  .nl-tabs {
    justify-content: flex-start;
    gap: 1.1rem;
    margin: -0.25rem -0.5rem 1.35rem;
    padding: 0 0.5rem 0.35rem;
    scroll-padding-inline: 0.5rem;
  }

  .nl-tabs a {
    font-size: 0.9rem;
  }

  .nl-tabs--news {
    gap: 0.45rem;
  }

  .nl-tabs--news a {
    padding: 0.45rem 0.75rem;
  }

  .nl-grid--products,
  .woocommerce ul.products {
    gap: 1.5rem 0.85rem;
  }

  .nl-card__media {
    aspect-ratio: 1 / 1.08;
  }

  .nl-card__body {
    gap: 0.4rem;
    padding-top: 0.75rem;
  }

  .nl-card__row {
    gap: 0.75rem;
  }

  .nl-card__title {
    font-size: 0.9rem;
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .nl-card__excerpt {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .nl-card__price {
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .nl-card__actions .nl-btn {
    min-height: 2.5rem;
    font-size: 0.82rem;
    white-space: normal;
  }

  .nl-about-flow {
    margin-top: 1.5rem;
  }

  .nl-about-flow::before {
    left: 1.15rem;
  }

  .nl-about-flow p {
    margin-left: 2.25rem;
  }

  .nl-about-flow p::before {
    left: -2.25rem;
    top: 1rem;
    width: 1.6rem;
    height: 1.6rem;
  }

  .nl-faq-list {
    margin-top: 1rem;
  }

  .nl-faq-list summary {
    align-items: center;
    padding: 1rem 0;
    font-size: 1rem;
    line-height: 1.3;
  }

  .nl-footer__inner {
    padding-top: 1.25rem;
  }

  .nl-footer__cols {
    gap: 1rem;
  }

  .nl-footer__bottom-inner {
    gap: 0.35rem;
  }
}

@media (max-width: 480px) {
  .nl-container,
  .nl-container--narrow {
    width: min(100%, calc(100% - 1rem));
  }

  .nl-brand {
    max-width: 3rem;
  }

  .nl-brand__text-wrap {
    display: none;
  }

  .nl-brand__logo {
    width: 48px;
    height: 48px;
  }

  .nl-brand__name {
    font-size: 0.94rem;
  }

  .nl-main {
    padding-top: 4.6rem;
  }

  .nl-header__inner {
    min-height: 4.6rem;
  }

  .nl-nav {
    top: 4.6rem;
  }

  .nl-main--front .nl-hero--landing .nl-hero__title {
    font-size: clamp(1.62rem, 8vw, 2.05rem);
  }

  .nl-main--front .nl-hero__stage {
    min-height: clamp(11rem, 52vw, 15rem);
  }

  .nl-grid--products,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 0.55rem;
  }

  .nl-card__body {
    padding-top: 0.55rem;
  }

  .nl-card__title {
    font-size: 0.76rem;
    line-height: 1.16;
  }

  .nl-card__excerpt {
    display: none;
  }

  .nl-card__actions .nl-btn {
    min-height: 2rem;
    padding: 0.42rem 0.45rem;
    font-size: 0.68rem;
    border-radius: 7px;
  }

  .nl-card__price {
    font-size: 0.88rem;
  }

  .nl-card__row {
    gap: 0.45rem;
  }

  .nl-grid--posts,
  .nl-grid--collections,
  .nl-grid--benefits,
  .nl-chip-grid,
  .nl-chip-grid--collections {
    grid-template-columns: 1fr;
  }

  .nl-card--post .nl-card__body {
    padding: 1rem;
  }

  .nl-cert-card {
    flex-basis: 82vw;
    height: 16rem;
  }
}

@media (max-width: 380px) {
  .nl-grid--products,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.5rem;
  }

  .nl-card__excerpt {
    display: none;
  }

  .nl-header__quick-action {
    min-height: 2.05rem;
    padding-inline: 0.42rem;
    font-size: 0.7rem;
  }

  .nl-cart-badge {
    min-width: 1.1rem;
    height: 1.1rem;
    padding-inline: 0.25rem;
    font-size: 0.64rem;
  }
}

@media (max-width: 760px) {
  .nl-qty-stepper {
    grid-template-columns: 3.05rem minmax(3.6rem, 1fr) 3.05rem;
    width: 100%;
    min-height: 3.1rem;
    border-radius: 12px;
  }

  .nl-qty-stepper__btn {
    width: 3.05rem;
    min-height: 3.1rem;
    font-size: 1.5rem;
  }

  .woocommerce .quantity .nl-qty-stepper .qty {
    min-height: 3.1rem;
    font-size: 1.05rem;
  }

  .woocommerce table.shop_table {
    display: block;
    width: 100%;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .woocommerce-cart table.cart thead {
    display: none;
  }

  .woocommerce-cart table.cart tbody,
  .woocommerce-cart table.cart tr,
  .woocommerce-cart table.cart td {
    display: block;
    width: 100%;
  }

  .woocommerce-cart table.cart tr.cart_item {
    position: relative;
    margin-bottom: 0.85rem;
    padding: 0.95rem;
    border: 1px solid rgba(60, 81, 72, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--nl-shadow-1);
  }

  .woocommerce-cart table.cart tr.cart_item td {
    border: 0;
    padding: 0;
    text-align: left !important;
  }

  .woocommerce-cart table.cart tr.cart_item td::before {
    display: none;
  }

  .woocommerce-cart table.cart td.product-remove {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: auto;
    z-index: 1;
  }

  .woocommerce-cart table.cart td.product-thumbnail {
    width: 5.25rem;
    float: left;
    margin: 0 0.85rem 0.65rem 0;
  }

  .woocommerce-cart table.cart td.product-thumbnail::after {
    content: "";
    display: block;
    clear: both;
  }

  .woocommerce-cart table.cart td.product-thumbnail img {
    width: 5.25rem;
  }

  .woocommerce-cart table.cart td.product-name {
    min-height: 5.25rem;
    padding-right: 2.6rem;
    display: flex;
    align-items: center;
  }

  .woocommerce-cart table.cart td.product-price,
  .woocommerce-cart table.cart td.product-subtotal {
    clear: both;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.75rem;
    color: var(--nl-muted);
  }

  .woocommerce-cart table.cart td.product-price::before {
    content: "Цена";
    color: var(--nl-muted);
    font-weight: 600;
  }

  .woocommerce-cart table.cart td.product-subtotal::before {
    content: "Итого";
    color: var(--nl-muted);
    font-weight: 600;
  }

  .woocommerce-cart table.cart td.product-price .amount,
  .woocommerce-cart table.cart td.product-subtotal .amount {
    color: var(--nl-ink);
    font-weight: 800;
  }

  .woocommerce-cart table.cart td.product-quantity {
    clear: both;
    padding-top: 0.9rem;
  }

  .woocommerce-cart table.cart td.product-quantity .quantity {
    width: 100%;
  }

  .woocommerce-cart table.cart td.actions {
    margin-top: 0.9rem;
    padding: 0.95rem;
    border: 1px solid rgba(60, 81, 72, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--nl-shadow-1);
  }

  .woocommerce-cart table.cart td.actions .coupon {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-bottom: 0.65rem;
  }

  .woocommerce-cart table.cart td.actions .coupon .input-text,
  .woocommerce-cart table.cart td.actions .coupon .button,
  .woocommerce-cart table.cart td.actions > .button {
    width: 100% !important;
  }

  .woocommerce-cart .cart-collaterals .cart_totals {
    border-radius: 14px;
  }

  .woocommerce table.shop_table td,
  .woocommerce table.shop_table th {
    padding: 0.65rem;
  }

  .woocommerce div.product {
    padding: 0.85rem;
  }

  .woocommerce div.product form.cart {
    align-items: stretch;
  }

  .woocommerce div.product form.cart .quantity,
  .woocommerce div.product form.cart .single_add_to_cart_button {
    width: 100%;
  }

  .woocommerce div.product form.cart .quantity .qty {
    width: 100%;
  }

  .woocommerce-cart .cart-collaterals .cart_totals,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout .woocommerce-checkout-review-order {
    padding: 0.85rem;
  }

  .woocommerce form .form-row {
    float: none !important;
    width: 100% !important;
  }
}
