:root {
    --nl-green-950: #052e1d;
    --nl-green-900: #064326;
    --nl-green-800: #075634;
    --nl-green-700: #086a3c;
    --nl-green-600: #0c7d49;
    --nl-green-500: #15945a;
    --nl-green-200: #bfe3cd;
    --nl-green-100: #e6f4eb;
    --nl-cream: #f7f4ea;
    --nl-sand: #e8d8b8;
    --nl-gold: #c9a34e;
    --nl-earth: #72513a;
    --nl-ink: #17211b;
    --nl-muted: #5c6b61;
    --nl-border: #dce5de;
    --nl-white: #ffffff;
    --nl-danger: #9f2d2d;
    --nl-shadow-sm: 0 8px 25px rgba(6, 67, 38, .08);
    --nl-shadow-lg: 0 22px 60px rgba(6, 46, 29, .16);
    --nl-radius-sm: .65rem;
    --nl-radius-md: 1rem;
    --nl-radius-lg: 1.55rem;
    --nl-container: 82rem;
    --nl-header-height: 8.5rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--nl-white);
    color: var(--nl-ink);
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(21, 148, 90, .38);
    outline-offset: 3px;
}

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

.nl-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.nl-skip-link {
    position: fixed;
    z-index: 1000;
    top: .75rem;
    left: .75rem;
    transform: translateY(-160%);
    border-radius: var(--nl-radius-sm);
    background: var(--nl-white);
    color: var(--nl-green-900);
    padding: .75rem 1rem;
    box-shadow: var(--nl-shadow-sm);
    font-weight: 800;
    text-decoration: none;
}

.nl-skip-link:focus {
    transform: translateY(0);
}

.nl-topbar {
    background: var(--nl-green-950);
    color: rgba(255, 255, 255, .93);
    font-size: .78rem;
    letter-spacing: .015em;
}

.nl-topbar__inner {
    display: flex;
    min-height: 2.4rem;
    align-items: center;
    justify-content: center;
    gap: 2.3rem;
}

.nl-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: .48rem;
    white-space: nowrap;
}

.nl-topbar__item svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.nl-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(220, 229, 222, .8);
    backdrop-filter: blur(18px);
    transition:
        box-shadow .2s ease,
        transform .2s ease;
}

.nl-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(6, 46, 29, .1);
}

.nl-header__main {
    display: grid;
    min-height: 6.1rem;
    grid-template-columns: 12.2rem minmax(18rem, 1fr) auto;
    align-items: center;
    gap: 2rem;
}

.nl-brand {
    display: inline-flex;
    width: 11rem;
    height: 5.2rem;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    text-decoration: none;
}

.nl-brand img {
    width: 9.8rem;
    height: 5rem;
    object-fit: contain;
}

.nl-search {
    display: grid;
    max-width: 38rem;
    grid-template-columns: 1fr 3.1rem;
    justify-self: center;
    width: 100%;
    border: 1px solid var(--nl-border);
    border-radius: 999px;
    background: #fbfcfb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
    overflow: hidden;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.nl-search:focus-within {
    border-color: var(--nl-green-500);
    box-shadow: 0 0 0 4px rgba(21, 148, 90, .1);
}

.nl-search input {
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--nl-ink);
    padding: .82rem 1.2rem;
    outline: none;
}

.nl-search input::placeholder {
    color: #89968d;
}

.nl-search button {
    display: grid;
    border: 0;
    background: var(--nl-green-700);
    color: var(--nl-white);
    cursor: pointer;
    place-items: center;
}

.nl-search button:hover {
    background: var(--nl-green-600);
}

.nl-search button svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
}

.nl-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.15rem;
}

.nl-header-action {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--nl-ink);
    text-decoration: none;
}

.nl-header-action > svg,
.nl-cart-icon > svg {
    width: 1.75rem;
    height: 1.75rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.nl-header-action span:not(.nl-cart-icon) {
    display: grid;
    line-height: 1.15;
}

.nl-header-action strong {
    font-size: .82rem;
}

.nl-header-action small {
    margin-top: .2rem;
    color: var(--nl-muted);
    font-size: .7rem;
}

.nl-cart-icon {
    position: relative;
}

.nl-cart-count {
    position: absolute;
    top: -.52rem;
    right: -.62rem;
    display: grid;
    min-width: 1.15rem;
    height: 1.15rem;
    border: 2px solid var(--nl-white);
    border-radius: 999px;
    background: var(--nl-green-600);
    color: var(--nl-white);
    font-size: .62rem;
    font-weight: 800;
    place-items: center;
}

.nl-menu-toggle {
    display: none;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid var(--nl-border);
    border-radius: .8rem;
    background: var(--nl-white);
    color: var(--nl-green-900);
    cursor: pointer;
    place-items: center;
}

.nl-menu-toggle svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
}

.nl-header__nav {
    border-top: 1px solid #eef2ee;
}

.nl-nav-row {
    display: flex;
    min-height: 3.1rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nl-navigation {
    display: flex;
    align-items: center;
    gap: 1.9rem;
}

.nl-navigation a {
    position: relative;
    display: inline-flex;
    min-height: 3.1rem;
    align-items: center;
    color: #26372d;
    font-size: .86rem;
    font-weight: 750;
    text-decoration: none;
}

.nl-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--nl-green-600);
    content: "";
    opacity: 0;
    transform: scaleX(.4);
    transition:
        opacity .2s ease,
        transform .2s ease;
}

.nl-navigation a:hover,
.nl-navigation a.is-active {
    color: var(--nl-green-700);
}

.nl-navigation a:hover::after,
.nl-navigation a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nl-language-switch {
    display: flex;
    align-items: center;
    gap: .2rem;
    border: 1px solid var(--nl-border);
    border-radius: 999px;
    background: #fbfcfb;
    padding: .16rem;
}

.nl-language-switch a {
    min-width: 2rem;
    border-radius: 999px;
    color: var(--nl-muted);
    font-size: .68rem;
    font-weight: 800;
    line-height: 1;
    padding: .45rem .5rem;
    text-align: center;
    text-decoration: none;
}

.nl-language-switch a:hover,
.nl-language-switch a.is-active {
    background: var(--nl-green-700);
    color: var(--nl-white);
}

.nl-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(191, 227, 205, .65), transparent 34rem),
        linear-gradient(135deg, #f9f7f0 0%, #f1f6ee 56%, #e4efe6 100%);
}

.nl-hero::before {
    position: absolute;
    top: -15rem;
    left: -12rem;
    width: 31rem;
    height: 31rem;
    border: 1px solid rgba(8, 106, 60, .12);
    border-radius: 50%;
    content: "";
}

.nl-hero__grid {
    display: grid;
    min-height: 37rem;
    grid-template-columns: minmax(0, .88fr) minmax(28rem, 1.12fr);
    align-items: center;
    gap: 2.4rem;
    padding-block: 4.4rem;
}

.nl-hero__content {
    position: relative;
    z-index: 2;
}

.nl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--nl-green-700);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nl-eyebrow::before {
    width: 2.2rem;
    height: 2px;
    background: currentColor;
    content: "";
}

.nl-eyebrow--light {
    color: #c6ebd3;
}

.nl-hero h1,
.nl-catalog-hero h1,
.nl-info-hero h1 {
    max-width: 13ch;
    margin: 1.1rem 0 1.2rem;
    color: var(--nl-green-950);
    font-size: clamp(2.65rem, 5vw, 5rem);
    font-weight: 880;
    letter-spacing: -.045em;
    line-height: .98;
}

.nl-hero__content > p {
    max-width: 37rem;
    margin: 0;
    color: #435249;
    font-size: clamp(1.05rem, 1.45vw, 1.24rem);
}

.nl-hero__actions {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.nl-button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    border: 1px solid transparent;
    border-radius: .8rem;
    padding: .75rem 1.15rem;
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform .18s ease,
        background .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.nl-button:hover {
    transform: translateY(-2px);
}

.nl-button svg,
.nl-text-link svg,
.nl-back-link svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.nl-button--primary {
    background: var(--nl-green-700);
    color: var(--nl-white);
    box-shadow: 0 10px 24px rgba(8, 106, 60, .2);
}

.nl-button--primary:hover {
    background: var(--nl-green-600);
    box-shadow: 0 15px 30px rgba(8, 106, 60, .24);
}

.nl-button--secondary {
    border-color: var(--nl-green-200);
    background: var(--nl-white);
    color: var(--nl-green-800);
}

.nl-button--secondary:hover {
    border-color: var(--nl-green-500);
    background: var(--nl-green-100);
}

.nl-button--ghost {
    border-color: rgba(8, 106, 60, .25);
    background: transparent;
    color: var(--nl-green-800);
}

.nl-button--ghost:hover {
    border-color: var(--nl-green-600);
    background: rgba(255, 255, 255, .65);
}

.nl-button--light {
    background: var(--nl-white);
    color: var(--nl-green-800);
}

.nl-hero__badge {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-top: 1.6rem;
    color: var(--nl-muted);
    font-size: .78rem;
    font-weight: 700;
}

.nl-hero__badge span {
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: var(--nl-green-500);
    box-shadow: 0 0 0 5px rgba(21, 148, 90, .12);
}

.nl-hero__visual {
    position: relative;
    min-height: 30rem;
}

.nl-hero__visual > img {
    width: 100%;
    height: 100%;
    min-height: 30rem;
    border: 9px solid rgba(255, 255, 255, .78);
    border-radius: 2.2rem;
    object-fit: cover;
    box-shadow: var(--nl-shadow-lg);
}

.nl-hero__seal {
    position: absolute;
    bottom: -1.3rem;
    left: -1.25rem;
    display: grid;
    width: 7.6rem;
    height: 7.6rem;
    border: 8px solid var(--nl-white);
    border-radius: 50%;
    background: var(--nl-white);
    box-shadow: var(--nl-shadow-sm);
    overflow: hidden;
    place-items: center;
}

.nl-hero__seal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nl-section {
    padding-block: 5rem;
}

.nl-section--categories {
    background: var(--nl-white);
}

.nl-section--products,
.nl-section--catalog {
    background: #fbfcfa;
}

.nl-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 36rem);
    align-items: end;
    gap: 2rem;
    margin-bottom: 2rem;
}

.nl-section-heading--compact {
    grid-template-columns: 1fr auto;
}

.nl-section-heading h2,
.nl-promo h2,
.nl-product-description h2 {
    margin: .65rem 0 0;
    color: var(--nl-green-950);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    letter-spacing: -.035em;
    line-height: 1.05;
}

.nl-section-heading > p {
    margin: 0;
    color: var(--nl-muted);
    font-size: 1rem;
}

.nl-text-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--nl-green-700);
    font-size: .86rem;
    font-weight: 800;
    text-decoration: none;
}

.nl-text-link:hover {
    color: var(--nl-green-500);
}

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

.nl-category-card {
    position: relative;
    display: grid;
    min-height: 16rem;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: var(--nl-radius-lg);
    color: var(--nl-white);
    padding: 1.3rem;
    text-decoration: none;
    box-shadow: var(--nl-shadow-sm);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.nl-category-card::before,
.nl-category-card::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.nl-category-card::before {
    right: -3.4rem;
    bottom: -4.2rem;
    width: 12rem;
    height: 12rem;
    border: 1px solid rgba(255, 255, 255, .22);
}

.nl-category-card::after {
    top: 2.6rem;
    right: -2rem;
    width: 7rem;
    height: 7rem;
    background: rgba(255, 255, 255, .07);
}

.nl-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 38px rgba(6, 46, 29, .18);
}

.nl-category-card--field {
    background:
        linear-gradient(145deg, rgba(111, 79, 42, .12), transparent 60%),
        linear-gradient(145deg, #708f39, #395f2f);
}

.nl-category-card--forest {
    background: linear-gradient(145deg, #173f2b, #062f1d);
}

.nl-category-card--garden {
    background: linear-gradient(145deg, #3d8d5a, #0a6a3e);
}

.nl-category-card--pet {
    background:
        linear-gradient(145deg, rgba(202, 164, 78, .24), transparent 55%),
        linear-gradient(145deg, #795a3e, #3d3a2c);
}

.nl-category-card__icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 3.65rem;
    height: 3.65rem;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .14);
    place-items: center;
}

.nl-category-card__icon img {
    width: 2.2rem;
    height: 2.2rem;
    filter: brightness(0) invert(1);
}

.nl-category-card__content {
    position: relative;
    z-index: 1;
    align-self: end;
}

.nl-category-card__content strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.1;
}

.nl-category-card__content small {
    display: block;
    margin-top: .55rem;
    color: rgba(255, 255, 255, .82);
    font-size: .82rem;
    line-height: 1.45;
}

.nl-category-card__meta {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 1.7rem;
    align-items: end;
    justify-content: flex-end;
    color: rgba(255, 255, 255, .8);
    font-size: .72rem;
    font-weight: 750;
}

.nl-category-card__meta svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

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

.nl-product-card {
    display: grid;
    min-width: 0;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius-md);
    background: var(--nl-white);
    box-shadow: 0 6px 20px rgba(6, 67, 38, .045);
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.nl-product-card:hover {
    border-color: #bed1c3;
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(6, 67, 38, .1);
}

.nl-product-card__media {
    position: relative;
    display: grid;
    min-height: 15rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, #fff, #f1f5f1);
    place-items: center;
    text-decoration: none;
}

.nl-product-card__media > img {
    width: 100%;
    height: 15rem;
    object-fit: contain;
    padding: 1rem;
    transition: transform .25s ease;
}

.nl-product-card:hover .nl-product-card__media > img {
    transform: scale(1.035);
}

.nl-product-card__placeholder {
    display: grid;
    color: var(--nl-green-600);
    gap: .75rem;
    place-items: center;
}

.nl-product-card__placeholder img {
    width: 4.5rem;
    height: 4.5rem;
}

.nl-product-card__placeholder small {
    color: var(--nl-muted);
    font-size: .72rem;
}

.nl-product-card__badge,
.nl-product-badge {
    display: inline-flex;
    border-radius: 999px;
    background: var(--nl-green-700);
    color: var(--nl-white);
    font-size: .7rem;
    font-weight: 850;
    padding: .35rem .65rem;
}

.nl-product-card__badge {
    position: absolute;
    top: .8rem;
    left: .8rem;
}

.nl-product-card__body {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    padding: 1rem;
}

.nl-product-card__brand {
    margin: 0 0 .35rem;
    color: var(--nl-green-700);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

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

.nl-product-card h3 a {
    text-decoration: none;
}

.nl-product-card h3 a:hover {
    color: var(--nl-green-700);
}

.nl-product-card__description {
    margin: .55rem 0 .8rem;
    color: var(--nl-muted);
    font-size: .78rem;
}

.nl-product-card__footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: .7rem;
    margin-top: .8rem;
}

.nl-price {
    display: grid;
    gap: .12rem;
}

.nl-price strong {
    color: var(--nl-green-700);
    font-size: .98rem;
}

.nl-price small {
    color: var(--nl-muted);
    font-size: .64rem;
}

.nl-icon-button {
    display: grid;
    width: 2.45rem;
    height: 2.45rem;
    flex: 0 0 auto;
    border-radius: .7rem;
    background: var(--nl-green-700);
    color: var(--nl-white);
    place-items: center;
    text-decoration: none;
}

.nl-icon-button:hover {
    background: var(--nl-green-500);
}

.nl-icon-button svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.nl-empty-state {
    display: flex;
    min-height: 15rem;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    border: 1px dashed #bfd0c3;
    border-radius: var(--nl-radius-lg);
    background: var(--nl-white);
    padding: 2rem;
    text-align: left;
}

.nl-empty-state--catalog {
    justify-content: space-between;
}

.nl-empty-state h2,
.nl-empty-state h3 {
    margin: 0 0 .4rem;
    color: var(--nl-green-900);
}

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

.nl-empty-state__icons {
    display: flex;
    margin-left: .5rem;
}

.nl-empty-state__icons span {
    display: grid;
    width: 3.4rem;
    height: 3.4rem;
    margin-left: -.55rem;
    border: 4px solid var(--nl-white);
    border-radius: 50%;
    background: var(--nl-green-100);
    place-items: center;
}

.nl-empty-state__icons img {
    width: 1.8rem;
    height: 1.8rem;
    color: var(--nl-green-700);
}

.nl-empty-state__single-icon {
    display: grid;
    width: 4rem;
    height: 4rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--nl-green-100);
    color: var(--nl-green-700);
    place-items: center;
}

.nl-empty-state__single-icon svg {
    width: 2rem;
    height: 2rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
}

.nl-benefits {
    border-block: 1px solid var(--nl-border);
    background: var(--nl-cream);
}

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

.nl-benefits article {
    display: flex;
    min-height: 7.3rem;
    align-items: center;
    gap: .9rem;
    padding: 1.2rem 1.3rem;
}

.nl-benefits article + article {
    border-left: 1px solid rgba(114, 81, 58, .16);
}

.nl-benefits svg {
    width: 2.15rem;
    height: 2.15rem;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--nl-green-700);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.nl-benefits h3 {
    margin: 0;
    font-size: .9rem;
}

.nl-benefits p {
    margin: .22rem 0 0;
    color: var(--nl-muted);
    font-size: .72rem;
}

.nl-section--promo {
    background:
        radial-gradient(circle at 0 100%, rgba(21, 148, 90, .08), transparent 24rem),
        var(--nl-white);
}

.nl-promo {
    position: relative;
    display: grid;
    min-height: 21rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
    overflow: hidden;
    border-radius: 2rem;
    background:
        linear-gradient(110deg, rgba(5, 46, 29, .98), rgba(8, 106, 60, .94)),
        var(--nl-green-900);
    color: var(--nl-white);
    box-shadow: var(--nl-shadow-lg);
}

.nl-promo__content {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: 3rem;
}

.nl-promo h2 {
    max-width: 15ch;
    color: var(--nl-white);
}

.nl-promo__content > p {
    max-width: 42rem;
    color: rgba(255, 255, 255, .77);
}

.nl-promo__visual {
    position: relative;
    display: grid;
    min-height: 21rem;
    place-items: center;
}

.nl-promo__visual::before {
    position: absolute;
    width: 21rem;
    height: 21rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    content: "";
}

.nl-promo__visual img {
    position: relative;
    z-index: 2;
    width: 13rem;
    height: 13rem;
    border: 9px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: var(--nl-white);
    object-fit: contain;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
}

.nl-promo__leaf {
    position: absolute;
    width: 5rem;
    height: 9rem;
    border-radius: 100% 0 100% 0;
    background: rgba(198, 235, 211, .18);
    transform: rotate(35deg);
}

.nl-promo__leaf--one {
    top: 2rem;
    left: 1rem;
}

.nl-promo__leaf--two {
    right: 1.2rem;
    bottom: 1rem;
    transform: rotate(215deg);
}

.nl-catalog-hero,
.nl-info-hero {
    background:
        linear-gradient(120deg, rgba(230, 244, 235, .9), rgba(247, 244, 234, .92));
    border-bottom: 1px solid var(--nl-border);
}

.nl-catalog-hero__grid {
    display: grid;
    min-height: 20rem;
    grid-template-columns: minmax(0, 1fr) 14rem;
    align-items: center;
    gap: 2rem;
    padding-block: 3.3rem;
}

.nl-catalog-hero h1,
.nl-info-hero h1 {
    max-width: 19ch;
    font-size: clamp(2.45rem, 4vw, 4rem);
}

.nl-catalog-hero p,
.nl-info-hero p {
    max-width: 45rem;
    margin: 0;
    color: var(--nl-muted);
    font-size: 1.05rem;
}

.nl-catalog-hero__mark {
    display: grid;
    width: 11rem;
    height: 11rem;
    justify-self: end;
    border: 1px solid rgba(8, 106, 60, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .72);
    color: var(--nl-green-700);
    box-shadow: var(--nl-shadow-sm);
    place-items: center;
}

.nl-catalog-hero__mark img {
    width: 6.6rem;
    height: 6.6rem;
    object-fit: contain;
}

.nl-catalog-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 25rem);
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.nl-category-pills {
    display: flex;
    align-items: center;
    gap: .5rem;
    overflow-x: auto;
    padding-bottom: .2rem;
    scrollbar-width: thin;
}

.nl-category-pills a {
    display: inline-flex;
    min-height: 2.5rem;
    flex: 0 0 auto;
    align-items: center;
    gap: .45rem;
    border: 1px solid var(--nl-border);
    border-radius: 999px;
    background: var(--nl-white);
    color: var(--nl-muted);
    font-size: .76rem;
    font-weight: 750;
    padding: .55rem .85rem;
    text-decoration: none;
}

.nl-category-pills a:hover,
.nl-category-pills a.is-active {
    border-color: var(--nl-green-700);
    background: var(--nl-green-700);
    color: var(--nl-white);
}

.nl-category-pills a span {
    display: grid;
    min-width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .2);
    font-size: .64rem;
    place-items: center;
}

.nl-catalog-search {
    display: grid;
    grid-template-columns: 1fr auto;
    border: 1px solid var(--nl-border);
    border-radius: .8rem;
    background: var(--nl-white);
    overflow: hidden;
}

.nl-catalog-search input {
    min-width: 0;
    border: 0;
    background: transparent;
    padding: .7rem .9rem;
    outline: none;
}

.nl-catalog-search button {
    border: 0;
    background: var(--nl-green-700);
    color: var(--nl-white);
    cursor: pointer;
    font-size: .75rem;
    font-weight: 800;
    padding-inline: 1rem;
}

.nl-catalog-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: .8rem;
    color: var(--nl-muted);
    font-size: .75rem;
}

.nl-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nl-pagination a,
.nl-pagination span {
    display: inline-flex;
    min-height: 2.45rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--nl-border);
    border-radius: .7rem;
    background: var(--nl-white);
    color: var(--nl-green-800);
    font-size: .78rem;
    font-weight: 750;
    padding: .5rem .85rem;
    text-decoration: none;
}

.nl-pagination .is-disabled {
    color: #a5afa8;
    cursor: not-allowed;
}

.nl-product-detail {
    background: #fbfcfa;
}

.nl-back-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: 1.4rem;
    color: var(--nl-green-700);
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
}

.nl-product-detail__grid {
    display: grid;
    grid-template-columns: minmax(22rem, .9fr) minmax(0, 1.1fr);
    gap: 3rem;
}

.nl-product-detail__media {
    display: grid;
    min-height: 35rem;
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius-lg);
    background:
        radial-gradient(circle at 50% 30%, #fff, #eef4ef);
    overflow: hidden;
    place-items: center;
}

.nl-product-detail__media > img {
    width: 100%;
    height: 35rem;
    object-fit: contain;
    padding: 2rem;
}

.nl-product-detail__placeholder {
    display: grid;
    color: var(--nl-green-700);
    gap: 1rem;
    place-items: center;
}

.nl-product-detail__placeholder img {
    width: 8rem;
    height: 8rem;
}

.nl-product-detail__placeholder span {
    color: var(--nl-muted);
    font-size: .8rem;
}

.nl-product-detail__content {
    align-self: center;
}

.nl-product-detail__content h1 {
    margin: .9rem 0 1rem;
    color: var(--nl-green-950);
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: -.04em;
    line-height: 1;
}

.nl-product-detail__lead {
    margin: 0;
    color: var(--nl-muted);
    font-size: 1.05rem;
}

.nl-product-facts {
    display: grid;
    margin: 1.7rem 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-block: 1px solid var(--nl-border);
}

.nl-product-facts div {
    padding: .85rem .7rem .85rem 0;
}

.nl-product-facts div + div {
    border-left: 1px solid var(--nl-border);
    padding-left: .9rem;
}

.nl-product-facts dt {
    color: var(--nl-muted);
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.nl-product-facts dd {
    margin: .25rem 0 0;
    font-size: .82rem;
    font-weight: 750;
}

.nl-product-detail__price {
    display: flex;
    align-items: baseline;
    gap: .7rem;
}

.nl-product-detail__price strong {
    color: var(--nl-green-700);
    font-size: 2rem;
}

.nl-product-detail__price span {
    color: var(--nl-muted);
    font-size: .72rem;
}

.nl-product-variants {
    margin-top: 1.5rem;
}

.nl-product-variants h2 {
    margin: 0 0 .7rem;
    font-size: .9rem;
}

.nl-product-variants > div {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.nl-product-variants span {
    display: grid;
    min-width: 8rem;
    border: 1px solid var(--nl-border);
    border-radius: .75rem;
    background: var(--nl-white);
    padding: .65rem .75rem;
}

.nl-product-variants strong {
    font-size: .75rem;
}

.nl-product-variants small {
    color: var(--nl-muted);
    font-size: .65rem;
}

.nl-product-detail__actions {
    display: flex;
    gap: .7rem;
    margin-top: 1.7rem;
    flex-wrap: wrap;
}

.nl-product-detail__fulfillment {
    margin: 1rem 0 0;
    color: var(--nl-muted);
    font-size: .75rem;
}

.nl-product-description {
    max-width: 58rem;
    margin-top: 4rem;
    border-top: 1px solid var(--nl-border);
    padding-top: 2.5rem;
}

.nl-product-description p {
    color: var(--nl-muted);
    font-size: 1rem;
}

.nl-info-hero {
    padding-block: 4rem;
}

.nl-info-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 23rem;
    gap: 4rem;
}

.nl-prose {
    max-width: 50rem;
}

.nl-prose p {
    margin: 0 0 1.25rem;
    color: #425148;
    font-size: 1.06rem;
    line-height: 1.75;
}

.nl-info-card {
    align-self: start;
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius-lg);
    background: var(--nl-cream);
    padding: 1.5rem;
}

.nl-info-card img {
    width: 10rem;
    height: 9rem;
    margin-inline: auto;
    object-fit: contain;
}

.nl-info-card p {
    color: var(--nl-muted);
    font-size: .85rem;
}

.nl-footer {
    background:
        radial-gradient(circle at 90% 0, rgba(21, 148, 90, .16), transparent 23rem),
        #111a14;
    color: rgba(255, 255, 255, .86);
}

.nl-footer__grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    padding-block: 4rem 3rem;
}

.nl-footer__brand img {
    width: 8.5rem;
    height: 7rem;
    border-radius: .8rem;
    background: var(--nl-white);
    object-fit: contain;
    padding: .25rem;
}

.nl-footer__brand p {
    max-width: 23rem;
    color: rgba(255, 255, 255, .62);
    font-size: .83rem;
}

.nl-footer__brand a {
    color: #bfe8cd;
    font-size: .8rem;
}

.nl-footer h2 {
    margin: 0 0 1rem;
    color: var(--nl-white);
    font-size: .83rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.nl-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nl-footer li + li {
    margin-top: .55rem;
}

.nl-footer li a,
.nl-footer li span {
    color: rgba(255, 255, 255, .64);
    font-size: .78rem;
    text-decoration: none;
}

.nl-footer li a:hover {
    color: var(--nl-white);
}

.nl-footer__shipping {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, .65);
    font-size: .72rem;
}

.nl-footer__shipping strong {
    border-radius: .3rem;
    background: #ffd900;
    color: #1c1c1c;
    padding: .25rem .45rem;
    font-size: .65rem;
}

.nl-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: rgba(0, 0, 0, .15);
}

.nl-footer__bottom .nl-container {
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, .5);
    font-size: .7rem;
}

@media (max-width: 1120px) {
    .nl-header__main {
        grid-template-columns: 9rem minmax(16rem, 1fr) auto;
        gap: 1rem;
    }

    .nl-brand {
        width: 8.5rem;
    }

    .nl-brand img {
        width: 8rem;
    }

    .nl-header-action span:not(.nl-cart-icon) {
        display: none;
    }

    .nl-navigation {
        gap: 1.1rem;
    }

    .nl-hero__grid {
        grid-template-columns: minmax(0, .9fr) minmax(24rem, 1.1fr);
    }

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

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

    .nl-benefits article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(114, 81, 58, .16);
    }

    .nl-benefits article:nth-child(4) {
        border-top: 1px solid rgba(114, 81, 58, .16);
    }
}

@media (max-width: 880px) {
    .nl-topbar__inner {
        justify-content: space-between;
        gap: .8rem;
    }

    .nl-topbar__item--desktop {
        display: none;
    }

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

    .nl-brand {
        width: 7.5rem;
        height: 4.3rem;
    }

    .nl-brand img {
        width: 7.2rem;
        height: 4.2rem;
    }

    .nl-search {
        max-width: none;
    }

    .nl-menu-toggle {
        display: grid;
    }

    .nl-header-action:first-child {
        display: none;
    }

    .nl-header__nav {
        position: relative;
    }

    .nl-nav-row {
        min-height: 0;
    }

    .nl-navigation {
        position: fixed;
        z-index: 120;
        top: 7.4rem;
        right: 1rem;
        left: 1rem;
        display: none;
        max-height: calc(100dvh - 8.4rem);
        align-items: stretch;
        border: 1px solid var(--nl-border);
        border-radius: 1rem;
        background: var(--nl-white);
        box-shadow: var(--nl-shadow-lg);
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        padding: .65rem;
    }

    .nl-navigation.is-open {
        display: flex;
    }

    .nl-navigation a {
        min-height: 2.8rem;
        border-radius: .65rem;
        padding-inline: .8rem;
    }

    .nl-navigation a::after {
        display: none;
    }

    .nl-navigation a:hover,
    .nl-navigation a.is-active {
        background: var(--nl-green-100);
    }

    .nl-language-switch {
        position: absolute;
        right: 0;
        bottom: .65rem;
        transform: translateY(100%);
    }

    .nl-hero__grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-block: 3.2rem;
    }

    .nl-hero h1 {
        max-width: 15ch;
    }

    .nl-hero__visual {
        min-height: 22rem;
    }

    .nl-hero__visual > img {
        min-height: 22rem;
    }

    .nl-section-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .nl-section-heading--compact {
        grid-template-columns: 1fr auto;
    }

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

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

    .nl-product-detail__media {
        min-height: 27rem;
    }

    .nl-product-detail__media > img {
        height: 27rem;
    }

    .nl-info-content__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nl-info-card {
        max-width: 28rem;
    }

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

@media (max-width: 640px) {
    .nl-container {
        width: min(calc(100% - 1.35rem), var(--nl-container));
    }

    .nl-topbar__inner {
        min-height: 2.15rem;
        justify-content: center;
    }

    .nl-topbar__item:nth-child(2) {
        display: none;
    }

    .nl-header__main {
        grid-template-columns: 5.7rem 1fr auto;
        gap: .55rem;
    }

    .nl-brand {
        width: 5.5rem;
        height: 4rem;
    }

    .nl-brand img {
        width: 5.3rem;
        height: 3.8rem;
    }

    .nl-search {
        grid-template-columns: 1fr 2.7rem;
    }

    .nl-search input {
        padding-inline: .8rem;
        font-size: .82rem;
    }

    .nl-header-action {
        display: none;
    }

    .nl-navigation {
        top: 6.75rem;
    }

    .nl-language-switch {
        position: static;
        display: flex;
        width: 100%;
        justify-content: center;
        margin-block: .5rem;
        transform: none;
    }

    .nl-header__nav {
        min-height: 2.75rem;
    }

    .nl-nav-row {
        min-height: 2.75rem;
        justify-content: center;
    }

    .nl-hero__grid {
        gap: 2rem;
        padding-block: 2.5rem;
    }

    .nl-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.45rem);
    }

    .nl-hero__visual,
    .nl-hero__visual > img {
        min-height: 17rem;
    }

    .nl-hero__seal {
        bottom: -.8rem;
        left: .8rem;
        width: 5rem;
        height: 5rem;
        border-width: 5px;
    }

    .nl-section {
        padding-block: 3.6rem;
    }

    .nl-section-heading--compact {
        grid-template-columns: 1fr;
    }

    .nl-category-grid,
    .nl-product-grid,
    .nl-benefits__grid {
        grid-template-columns: 1fr;
    }

    .nl-category-card {
        min-height: 13rem;
    }

    .nl-benefits article + article,
    .nl-benefits article:nth-child(3),
    .nl-benefits article:nth-child(4) {
        border-top: 1px solid rgba(114, 81, 58, .16);
        border-left: 0;
    }

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

    .nl-promo__content {
        padding: 2rem;
    }

    .nl-promo__visual {
        min-height: 14rem;
    }

    .nl-catalog-hero__grid {
        min-height: 17rem;
        grid-template-columns: 1fr 6rem;
        padding-block: 2.4rem;
    }

    .nl-catalog-hero__mark {
        width: 5.8rem;
        height: 5.8rem;
    }

    .nl-catalog-hero__mark img {
        width: 3.7rem;
        height: 3.7rem;
    }

    .nl-empty-state,
    .nl-empty-state--catalog {
        align-items: flex-start;
        flex-direction: column;
    }

    .nl-product-detail__media {
        min-height: 21rem;
    }

    .nl-product-detail__media > img {
        height: 21rem;
        padding: 1rem;
    }

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

    .nl-product-facts div + div {
        border-top: 1px solid var(--nl-border);
        border-left: 0;
        padding-left: 0;
    }

    .nl-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-block: 3rem 2rem;
    }

    .nl-footer__bottom .nl-container {
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: .2rem;
        padding-block: .8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
