:root {
    --paper: #f3efe6;
    --paper-2: #e6dfd2;
    --ink: #1c2421;
    --muted: #5c675f;
    --spruce: #1e3f34;
    --spruce-2: #2c6b50;
    --copper: #8d4b24;
    --line: #d9d0c3;
    --white: #fffcf8;
    --stock: #1e3f34;
    --focus: #8d4b24;
    --serif: Georgia, "Iowan Old Style", Palatino, "Palatino Linotype", serif;
    --sans: "Segoe UI", Candara, "Trebuchet MS", sans-serif;
    --wrap: 1120px;
    --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 1.0625rem;
    line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--spruce); }
a:hover { color: var(--copper); }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 5vw, 4.2rem); margin: 0 0 0.6rem; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 0.6rem; }
p { margin: 0 0 0.9rem; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; }
}

.nl-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.nl-skip {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--ink);
    color: white;
    padding: 0.6rem 0.9rem;
    z-index: 20;
}
.nl-skip:focus { top: 1rem; }
.nl-wrap { width: min(var(--wrap), calc(100% - 2rem)); margin-inline: auto; }
.nl-eyebrow {
    margin: 0 0 0.7rem;
    color: var(--copper);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.nl-announce {
    margin: 0;
    background: var(--spruce);
    color: #f6f1e7;
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.95rem;
}
.nl-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(243, 239, 230, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
.nl-header__bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 4.5rem;
}
.nl-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink);
    text-decoration: none;
    margin-right: auto;
}
.nl-mark { width: 42px; height: 42px; flex: none; display: block; }
.nl-logo__name strong { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; letter-spacing: -0.02em; }
.nl-logo__name small { display: block; color: var(--copper); letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.68rem; font-weight: 700; }
.nl-footer .nl-logo { margin-right: 0; }
.nl-footer .nl-logo__name strong,
.nl-footer .nl-logo__name small { color: #f6f1e7; }
.nl-nav summary {
    list-style: none;
    cursor: pointer;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.nl-nav summary::-webkit-details-marker { display: none; }
.nl-menu, .nl-footer-menu { list-style: none; margin: 0; padding: 0.4rem 0 0; }
.nl-menu a, .nl-footer-menu a { text-decoration: none; }
.nl-menu li { margin: 0.2rem 0; }
.nl-menu .sub-menu { padding-left: 0.8rem; }
.nl-search { display: flex; gap: 0.4rem; }
.nl-search input[type="search"] {
    width: 9.5rem;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 999px;
    padding: 0.55rem 0.8rem;
    font: inherit;
}
.nl-search button, .nl-btn, button.button, a.button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    background: var(--spruce);
    color: #f7f3ea;
    border: 0;
    border-radius: 999px;
    padding: 0.7rem 1.05rem;
    min-height: 44px;
    font: inherit;
    font-weight: 650;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.nl-btn--ghost, .woocommerce a.button.alt {
    background: transparent;
    color: var(--spruce);
    border: 1px solid var(--spruce);
}
.nl-search button { padding-inline: 0.8rem; }

@media (min-width: 980px) {
    .nl-nav summary { display: none; }
    .nl-nav .nl-menu { display: flex; gap: 0.3rem 1rem; padding: 0; align-items: center; }
    .nl-nav .nl-menu li { margin: 0; position: relative; }
    .nl-nav .nl-menu .sub-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 0.5rem;
        min-width: 12rem;
        z-index: 5;
    }
    .nl-nav .nl-menu li:hover > .sub-menu,
    .nl-nav .nl-menu li:focus-within > .sub-menu { display: block; }
    .nl-search input[type="search"] { width: 11rem; }
}

.nl-hero { padding: 2.2rem 0 1rem; }
.nl-hero__grid, .nl-split { display: grid; gap: 1.5rem; align-items: center; }
.nl-lede { font-size: 1.18rem; max-width: 40rem; }
.nl-hero__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }
.nl-hero__media img, .nl-split__media img, .nl-cat img, .nl-card__media img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    background: var(--paper-2);
}
.nl-hero__media img { aspect-ratio: 16/10; max-height: 520px; }
@media (min-width: 900px) {
    .nl-hero__grid, .nl-split { grid-template-columns: 1.05fr 0.95fr; }
}

.nl-trust { padding: 0.5rem 0 1rem; }
.nl-trust__grid, .nl-notes { display: grid; gap: 0.8rem; }
.nl-trust p, .nl-notes article {
    margin: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.05rem;
}
.nl-trust strong, .nl-notes h2 { display: block; margin-bottom: 0.25rem; }
.nl-trust span { color: var(--muted); }
@media (min-width: 800px) {
    .nl-trust__grid { grid-template-columns: repeat(4, 1fr); }
    .nl-notes { grid-template-columns: 1fr 1fr; }
}

.nl-section { padding: 2.6rem 0; }
.nl-section--paper { background: #efe8db; }
.nl-section--spruce { background: var(--spruce); color: #f6f1e7; }
.nl-section--spruce a { color: #f3d7c4; }
.nl-section--spruce .nl-notes article { color: var(--ink); }
.nl-section--spruce .nl-notes article h2 { color: #17241f; }
.nl-section--spruce .nl-notes article p { color: #3c4741; }
.nl-section--spruce .nl-notes article a { color: var(--copper); }
.nl-section__head { display: flex; justify-content: space-between; gap: 1rem; align-items: end; margin-bottom: 1.2rem; }
.nl-section__head p { max-width: 36rem; color: var(--muted); }

.nl-cats { display: grid; gap: 0.8rem; }
.nl-cat {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 0.8rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 112px;
}
.nl-cat img { height: 112px; border-radius: 0; }
.nl-cat strong { display: block; font-family: var(--serif); font-size: 1.25rem; }
.nl-cat em { color: var(--muted); font-style: normal; }
@media (min-width: 800px) {
    .nl-cats { grid-template-columns: 1fr 1fr; }
}

.nl-grid, ul.products, .woocommerce ul.products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    clear: both;
}
.nl-grid::before, .nl-grid::after,
ul.products::before, ul.products::after,
.woocommerce ul.products::before, .woocommerce ul.products::after { content: none; display: none; }
@media (min-width: 720px) {
    .nl-grid, ul.products, .woocommerce ul.products { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
    .nl-grid, ul.products, .woocommerce ul.products { grid-template-columns: 1fr 1fr 1fr; }
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: auto !important;
    max-width: none;
    float: none !important;
    margin: 0 !important;
    clear: none !important;
}
.nl-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}
.nl-card__media {
    position: relative;
    display: block;
    background: var(--paper-2);
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.nl-card__media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}
.nl-card__body { padding: 0.95rem 1.05rem 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.nl-card__brand { margin: 0; color: var(--copper); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }
.nl-card .price { margin: 0.2rem 0 0; font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.woocommerce div.product p.price { color: var(--ink); font-size: 1.35rem; font-weight: 700; }
.nl-card h2, .nl-card .woocommerce-loop-product__title {
    font-size: 1.28rem;
    line-height: 1.25;
    margin: 0;
    hyphens: manual;
    overflow-wrap: normal;
}
.nl-card__excerpt {
    color: var(--muted);
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nl-card h2 a { color: inherit; text-decoration: none; }

.nl-card__row { display: flex; justify-content: space-between; gap: 0.6rem; align-items: center; margin-top: 0.4rem; flex-wrap: wrap; }
.nl-pay-btn { background: var(--spruce); color: #f7f3ea; border: 0; border-radius: 999px; min-height: 40px; padding: 0.35rem 0.9rem; font: inherit; font-weight: 700; cursor: pointer; }
.nl-pay-dialog { border: 0; border-radius: 16px; padding: 1rem; width: min(560px, calc(100% - 2rem)); }
.nl-pay-dialog::backdrop { background: rgba(23, 36, 31, 0.55); }
.nl-pay-dialog__bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 0.8rem; }
.nl-pay-dialog iframe { width: 100%; min-height: 460px; border: 0; }
.nl-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    background: #f3e2d4;
    color: var(--copper);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.nl-card__media .nl-badge { position: absolute; left: 0.7rem; top: 0.7rem; }
.nl-badge.is-stock { background: #d9eadf; color: var(--stock); }
.nl-price { font-weight: 650; }
.nl-text-link { font-weight: 700; }

.nl-steps { margin: 0; padding-left: 1.2rem; }
.nl-steps li { margin: 0 0 0.7rem; }
.nl-fine, .nl-photo-note { color: var(--muted); font-size: 0.92rem; }

.nl-faq details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    margin: 0 0 0.55rem;
}
.nl-faq summary { cursor: pointer; font-weight: 700; min-height: 44px; display: flex; align-items: center; }
.nl-section--spruce .nl-faq details { background: transparent; }

.nl-pagehead { padding: 1.6rem 0 0.4rem; }
.nl-prose { padding-bottom: 3rem; }
.nl-content, .term-description { max-width: 44rem; }
.nl-content h2, .term-description h2 { margin-top: 1.6rem; }
.nl-content li, .term-description li { margin: 0.3rem 0; }
.nl-posts { display: grid; gap: 1rem; }
.nl-posts article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.1rem; }
.nl-posts h2 { font-size: 1.6rem; }

.nl-shop { padding-bottom: 3rem; }
.nl-crumbs ol { display: flex; flex-wrap: wrap; gap: 0.35rem 0.7rem; list-style: none; padding: 0.8rem 0 0; margin: 0; color: var(--muted); font-size: 0.92rem; }
.nl-filters { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; margin: 0.8rem 0 1rem; }
.nl-chip {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 999px;
    min-height: 44px;
    padding: 0.35rem 0.85rem;
    font: inherit;
    cursor: pointer;
}
.nl-chip.is-active { background: var(--spruce); color: #f6f1e7; border-color: var(--spruce); }
.woocommerce-result-count, .woocommerce-ordering { color: var(--muted); }

.nl-kicker { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.nl-brand { letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; font-weight: 700; color: var(--copper); }
.nl-callout {
    background: #f7f1e6;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin: 0.6rem 0 1rem;
}
.nl-msrp span { display: block; color: var(--muted); font-weight: 400; font-size: 0.92rem; }
.nl-product__grid { display: grid; gap: 1.2rem; }
@media (min-width: 900px) {
    .nl-product__grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
}
.nl-specs { width: 100%; border-collapse: collapse; }
.nl-specs th, .nl-specs td { text-align: left; vertical-align: top; padding: 0.55rem 0.4rem; border-bottom: 1px solid var(--line); }
.nl-specs th { width: 38%; color: var(--muted); font-weight: 650; }
.woocommerce-tabs ul.tabs { list-style: none; display: flex; gap: 0.8rem; padding: 0; flex-wrap: wrap; }
.woocommerce-tabs ul.tabs li { background: transparent; border: 0; }
.woocommerce-tabs ul.tabs li a { text-decoration: none; font-weight: 700; }
.woocommerce div.product .woocommerce-tabs .panel { margin-top: 1rem; }

.nl-form p { margin: 0 0 0.8rem; }
.nl-form label { display: block; font-weight: 700; margin-bottom: 0.25rem; }
.nl-form input, .nl-form select, .nl-form textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    max-width: 36rem;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 10px;
    padding: 0.7rem 0.75rem;
    font: inherit;
    color: inherit;
}
.nl-hp { position: absolute; left: -9999px; }
.nl-thanks {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
}

.woocommerce table.shop_table { background: var(--white); border-radius: 12px; border-collapse: collapse; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 0.7rem; }
.woocommerce-checkout #customer_details, .woocommerce-checkout #order_review {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

.nl-footer { background: #16241e; color: #e7e1d6; padding: 2.4rem 0 1.2rem; margin-top: 1rem; }
.nl-footer a { color: #f3d7c4; }
.nl-footer__grid { display: grid; gap: 1.4rem; }
.nl-footer h2 { font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }
.nl-footer ul { list-style: none; margin: 0; padding: 0; }
.nl-footer li { margin: 0.25rem 0; }
.nl-logo--footer strong { font-family: var(--serif); font-size: 1.4rem; }
.nl-footer__legal { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 1.4rem; padding-top: 1rem; color: #c9c2b6; font-size: 0.92rem; }
@media (min-width: 800px) {
    .nl-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.nl-card[hidden] { display: none; }
