/*
Theme Name: Noir Leaf Luxe
Theme URI: https://noirleaf.shop
Author: Codex
Description: A dark luxury WooCommerce theme for Noir Leaf, with black-gold styling, product-first sections, and simple Customizer controls.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: noirleaf-luxe
Tags: e-commerce, custom-logo, custom-menu, featured-images, theme-options, woocommerce
*/

:root {
  --nl-black: #050505;
  --nl-ink: #090909;
  --nl-panel: #10100f;
  --nl-panel-soft: #151411;
  --nl-line: rgba(204, 171, 94, 0.24);
  --nl-line-soft: rgba(255, 255, 255, 0.08);
  --nl-gold: #c8a96a;
  --nl-gold-bright: #f0d38a;
  --nl-cream: #f5efe5;
  --nl-muted: #a9a197;
  --nl-dim: #736d65;
  --nl-max: 1180px;
  --nl-radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--nl-black);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 169, 106, 0.1), transparent 28rem),
    linear-gradient(180deg, #080807 0%, #050505 52%, #0b0a09 100%);
  color: var(--nl-cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.admin-bar .nl-site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.nl-wrap {
  width: min(calc(100% - 32px), var(--nl-max));
  margin: 0 auto;
}

.nl-site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(5, 5, 5, 0.9);
  border-bottom: 1px solid var(--nl-line);
  backdrop-filter: blur(18px);
}

.nl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.nl-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.nl-brand img {
  width: auto;
  max-height: 46px;
}

.nl-brand-text {
  display: grid;
  gap: 0;
}

.nl-logo-word {
  color: var(--nl-gold);
  font-family: Didot, "Bodoni 72", "Bodoni MT", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.nl-logo-sub {
  color: var(--nl-muted);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nl-main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--nl-muted);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.nl-main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nl-main-nav a:hover,
.nl-cart-link:hover {
  color: var(--nl-gold-bright);
}

.nl-cart-link {
  color: var(--nl-gold);
  border: 1px solid var(--nl-line);
  padding: 9px 13px;
  border-radius: var(--nl-radius);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.nl-hero {
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--nl-line);
}

.nl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.68) 42%, rgba(5, 5, 5, 0.2) 100%),
    var(--nl-hero-image, linear-gradient(135deg, #16130f 0%, #090909 45%, #211a10 100%));
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.nl-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, var(--nl-black));
}

.nl-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 112px 0 96px;
}

.nl-eyebrow {
  margin: 0 0 18px;
  color: var(--nl-gold);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nl-hero h1,
.nl-page-title {
  margin: 0;
  color: var(--nl-cream);
  font-family: Didot, "Bodoni 72", "Bodoni MT", Georgia, serif;
  font-size: clamp(3.4rem, 9vw, 8.4rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nl-hero p {
  max-width: 530px;
  margin: 26px 0 0;
  color: var(--nl-muted);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.nl-hero .nl-age-note {
  max-width: 620px;
  margin-top: 22px;
  padding-left: 14px;
  border-left: 2px solid var(--nl-gold);
  color: #d8cdbd;
  font-size: 0.92rem;
}

.nl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.nl-button,
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #payment #place_order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--nl-gold);
  border-radius: var(--nl-radius);
  background: var(--nl-gold);
  color: #080808;
  padding: 12px 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nl-button:hover,
.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #payment #place_order:hover {
  background: var(--nl-gold-bright);
  border-color: var(--nl-gold-bright);
  color: #080808;
  transform: translateY(-1px);
}

.nl-button.nl-button-ghost {
  background: transparent;
  color: var(--nl-gold-bright);
}

.nl-button.nl-button-ghost:hover {
  background: rgba(200, 169, 106, 0.12);
  color: var(--nl-gold-bright);
}

.nl-section {
  padding: clamp(64px, 8vw, 112px) 0;
  border-bottom: 1px solid var(--nl-line-soft);
}

.nl-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.nl-section-kicker {
  margin: 0 0 8px;
  color: var(--nl-gold);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nl-section h2,
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  margin: 0;
  color: var(--nl-cream);
  font-family: Didot, "Bodoni 72", "Bodoni MT", Georgia, serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.nl-section h2 {
  font-size: clamp(2.3rem, 5vw, 5.1rem);
}

.nl-section-copy {
  max-width: 470px;
  margin: 0;
  color: var(--nl-muted);
}

.nl-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.nl-feature {
  min-height: 340px;
  display: grid;
  align-content: end;
  padding: 26px;
  border: 1px solid var(--nl-line);
  border-radius: var(--nl-radius);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.24) 42%, rgba(5, 5, 5, 0.92) 100%),
    var(--nl-feature-image, linear-gradient(135deg, #171411, #0b0b0a 60%, #21170c));
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.nl-feature:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.24) 42%, rgba(5, 5, 5, 0.92) 100%),
    var(--nl-feature-image, linear-gradient(135deg, #0c0f0c, #080808 54%, #272014));
  background-position: center;
  background-size: cover;
}

.nl-feature:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.24) 42%, rgba(5, 5, 5, 0.92) 100%),
    var(--nl-feature-image, linear-gradient(135deg, #15100d, #070707 58%, #1b1b17));
  background-position: center;
  background-size: cover;
}

.nl-feature span {
  color: var(--nl-gold);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nl-feature h3 {
  margin: 8px 0 8px;
  color: var(--nl-cream);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.nl-feature p {
  margin: 0;
  color: var(--nl-muted);
}

.nl-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.nl-story-media {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--nl-line);
  border-radius: var(--nl-radius);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.34)),
    var(--nl-story-image, linear-gradient(135deg, #191612, #060606 54%, #2b2114));
  background-position: center;
  background-size: cover;
}

.nl-story-content p {
  color: var(--nl-muted);
}

.nl-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.nl-trust-item {
  padding: 22px;
  border: 1px solid var(--nl-line-soft);
  border-radius: var(--nl-radius);
  background: rgba(255, 255, 255, 0.025);
}

.nl-trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--nl-cream);
}

.nl-trust-item span {
  color: var(--nl-muted);
  font-size: 0.94rem;
}

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

.nl-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid var(--nl-line);
  border-radius: var(--nl-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  overflow: hidden;
}

.nl-product-media {
  aspect-ratio: 1 / 1.12;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(200, 169, 106, 0.1), rgba(5, 5, 5, 0.74)),
    linear-gradient(135deg, #1c1711, #080808 60%, #241a0e);
  color: var(--nl-dim);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.nl-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nl-product-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.nl-product-count {
  color: var(--nl-gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nl-product-body h3 {
  margin: 0;
  color: var(--nl-cream);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.06;
}

.nl-product-body p {
  min-height: 42px;
  margin: 0;
  color: var(--nl-muted);
  font-size: 0.92rem;
}

.nl-product-body strong {
  color: var(--nl-gold-bright);
}

.nl-product-body .amount {
  color: var(--nl-gold);
  font-weight: 700;
}

.nl-product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}

.nl-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--nl-gold);
  border-radius: var(--nl-radius);
  background: var(--nl-gold);
  color: #080808;
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.nl-mini-button:hover {
  background: var(--nl-gold-bright);
  border-color: var(--nl-gold-bright);
  color: #080808;
}

.nl-mini-button.nl-mini-button-ghost {
  background: transparent;
  color: var(--nl-gold-bright);
}

.nl-mini-button.nl-mini-button-ghost:hover {
  background: rgba(200, 169, 106, 0.12);
}

.nl-home-product-slots {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.nl-page-hero {
  padding: 84px 0 48px;
  border-bottom: 1px solid var(--nl-line-soft);
}

.nl-page-hero p:last-child {
  max-width: 620px;
  color: var(--nl-muted);
}

.nl-collections-head {
  padding: 34px 0 12px;
}

.nl-collections-head h1 {
  margin: 0;
  color: var(--nl-cream);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.nl-whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(240, 211, 138, 0.75);
  border-radius: 999px;
  background: #12100b;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.44);
  color: var(--nl-gold-bright);
  padding: 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nl-whatsapp-float:hover {
  background: var(--nl-gold);
  color: #080808;
}

.nl-page-main {
  padding: 68px 0 96px;
}

.nl-page-title {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  margin-bottom: 28px;
}

.entry-content {
  color: var(--nl-muted);
}

.entry-content a {
  color: var(--nl-gold);
}

.nl-site-footer {
  background: #030303;
  color: var(--nl-muted);
  border-top: 1px solid var(--nl-line);
  padding: 46px 0;
}

.nl-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.nl-footer-brand {
  max-width: 420px;
}

.nl-footer-brand strong {
  display: block;
  color: var(--nl-gold);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  text-transform: uppercase;
}

.nl-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: flex-end;
}

.nl-footer-links a:hover {
  color: var(--nl-gold-bright);
}

input,
textarea,
select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
  background: #111;
  color: var(--nl-cream);
  border: 1px solid rgba(200, 169, 106, 0.3);
  border-radius: var(--nl-radius);
}

.woocommerce,
.woocommerce-page {
  color: var(--nl-muted);
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce .woocommerce-breadcrumb a {
  color: var(--nl-dim);
}

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

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--nl-line-soft);
  border-radius: var(--nl-radius);
  background: rgba(255, 255, 255, 0.025);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  margin: 0 0 14px;
  background: #111;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
  color: var(--nl-cream);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--nl-gold);
}

.woocommerce span.onsale {
  min-height: 0;
  min-width: 0;
  border-radius: var(--nl-radius);
  background: var(--nl-gold);
  color: #080808;
  line-height: 1;
  padding: 8px 10px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  border-color: var(--nl-line-soft);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: #111;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--nl-cream);
}

.woocommerce table.shop_table,
.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce-checkout #payment,
.woocommerce .woocommerce-customer-details address {
  border-color: var(--nl-line-soft);
  background: rgba(255, 255, 255, 0.025);
}

.nl-tea {
  --tea-forest: #143d2b;
  --tea-leaf: #2d7a4f;
  --tea-mint: #e7f4dc;
  --tea-cream: #fbf8ef;
  --tea-ink: #193225;
  --tea-muted: #617066;
  --tea-line: rgba(45, 122, 79, 0.18);
  background: linear-gradient(180deg, #fbf8ef 0%, #edf7e5 48%, #f8f4e9 100%);
  color: var(--tea-ink);
}

.nl-tea-hero {
  min-height: min(720px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--tea-line);
}

.nl-tea-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 248, 239, 0.95), rgba(231, 244, 220, 0.78));
}

.nl-tea-hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 86px 0;
}

.nl-tea-eyebrow,
.nl-tea-kicker {
  margin: 0 0 12px;
  color: var(--tea-leaf);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nl-tea-hero h1,
.nl-tea-section h2 {
  margin: 0;
  color: var(--tea-forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.nl-tea-hero h1 {
  font-size: clamp(3.4rem, 8vw, 7.6rem);
}

.nl-tea-hero p {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--tea-muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.nl-tea-button,
.nl-tea-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--tea-leaf);
  border-radius: 4px;
  background: var(--tea-leaf);
  color: #fff;
  padding: 12px 20px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.nl-tea-button:hover,
.nl-tea-mini-button:hover {
  background: var(--tea-forest);
  border-color: var(--tea-forest);
  color: #fff;
}

.nl-tea-button-ghost {
  background: rgba(255, 255, 255, 0.44);
  color: var(--tea-forest);
}

.nl-tea-button-ghost:hover {
  background: #fff;
  color: var(--tea-forest);
}

.nl-tea-section {
  padding: clamp(62px, 8vw, 104px) 0;
  border-bottom: 1px solid var(--tea-line);
}

.nl-tea-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.nl-tea-section-head p,
.nl-tea-story p {
  max-width: 520px;
  margin: 0;
  color: var(--tea-muted);
}

.nl-tea-section h2 {
  font-size: clamp(2.2rem, 4.7vw, 4.8rem);
}

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

.nl-tea-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--tea-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 48px rgba(20, 61, 43, 0.08);
  overflow: hidden;
}

.nl-tea-card-media {
  aspect-ratio: 1 / 1.05;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(231, 244, 220, 0.94), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, #dcefcf, #f8f4e9);
  color: rgba(20, 61, 43, 0.48);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.nl-tea-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nl-tea-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.nl-tea-card-body span,
.nl-tea-flow span {
  color: var(--tea-leaf);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nl-tea-card-body h3,
.nl-tea-flow h3 {
  margin: 0;
  color: var(--tea-forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.08;
}

.nl-tea-card-body p {
  min-height: 42px;
  margin: 0;
  color: var(--tea-muted);
  font-size: 0.92rem;
}

.nl-tea-card-body .amount {
  color: var(--tea-leaf);
  font-weight: 800;
}

.nl-tea-mini-button {
  min-height: 40px;
  margin-top: 4px;
  padding: 10px 12px;
  font-size: 0.78rem;
}

.nl-tea-flow-section {
  background: rgba(255, 255, 255, 0.42);
}

.nl-tea-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.nl-tea-flow article {
  min-height: 230px;
  display: grid;
  align-content: end;
  padding: 24px;
  border: 1px solid var(--tea-line);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(231, 244, 220, 0.84)),
    linear-gradient(135deg, #f8f4e9, #e4f2d9);
}

.nl-tea-flow p {
  margin: 8px 0 0;
  color: var(--tea-muted);
}

.nl-tea-story,
.nl-tea-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.nl-tea-bridge-section {
  background:
    linear-gradient(135deg, rgba(45, 122, 79, 0.16), rgba(200, 169, 106, 0.08)),
    #0a0d08;
}

.nl-tea-bridge p {
  margin: 0;
  color: #d9ddcf;
}

@media (max-width: 900px) {
  body.admin-bar .nl-site-header {
    top: 0;
  }

  .nl-header-inner {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding: 18px 0;
  }

  .nl-main-nav,
  .nl-main-nav ul {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }

  .nl-hero {
    min-height: 640px;
  }

  .nl-hero-content {
    padding: 84px 0 72px;
  }

  .nl-section-head,
  .nl-footer-inner,
  .nl-tea-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .nl-tea-hero {
    min-height: 640px;
  }

  .nl-tea-hero::before {
    background: linear-gradient(180deg, rgba(251, 248, 239, 0.96), rgba(231, 244, 220, 0.8));
  }

  .nl-feature-grid,
  .nl-story,
  .nl-trust-grid,
  .nl-product-slots,
  .woocommerce ul.products,
  .nl-tea-section-head,
  .nl-tea-products,
  .nl-tea-flow,
  .nl-tea-story,
  .nl-tea-bridge {
    grid-template-columns: 1fr;
  }

  .nl-footer-links {
    justify-content: flex-start;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .nl-product-slots,
  .woocommerce ul.products,
  .nl-tea-products,
  .nl-noir .nl-product-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nl-noir .nl-product-slots {
    grid-template-columns: 1fr;
  }
}

.nl-noir .nl-product-slots {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.nl-tea-site {
  background: #f7fbf2;
  color: #173629;
}

body.nl-tea-site .nl-site-header {
  background: rgba(250, 253, 246, 0.92);
  border-bottom: 1px solid rgba(46, 111, 73, 0.14);
  box-shadow: 0 10px 30px rgba(28, 75, 49, 0.06);
}

body.nl-tea-site .nl-logo-word {
  color: #1f5e3e;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: none;
}

body.nl-tea-site .nl-logo-sub,
body.nl-tea-site .nl-main-nav {
  color: #6b7d70;
}

body.nl-tea-site .nl-main-nav a:hover,
body.nl-tea-site .nl-cart-link:hover {
  color: #1f5e3e;
}

body.nl-tea-site .nl-cart-link {
  border-color: rgba(46, 111, 73, 0.22);
  background: #ffffff;
  color: #1f5e3e;
}

body.nl-tea-site .nl-site-footer {
  background: #173629;
  border-top: 0;
  color: rgba(246, 250, 239, 0.76);
}

body.nl-tea-site .nl-footer-brand strong {
  color: #f6faef;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: none;
}

.nl-tea {
  --tea-deep: #173629;
  --tea-green: #2f7a4e;
  --tea-bright: #74a45a;
  --tea-ivory: #fbfff6;
  --tea-paper: #f4faee;
  --tea-line: rgba(47, 122, 78, 0.16);
  --tea-muted: #637568;
  background:
    linear-gradient(180deg, #f7fbf2 0%, #eef8e8 54%, #fbfff6 100%);
  color: var(--tea-deep);
}

.nl-tea-hero {
  min-height: auto;
  padding: clamp(66px, 8vw, 118px) 0 clamp(54px, 7vw, 92px);
  border-bottom: 1px solid var(--tea-line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(229, 242, 218, 0.92));
}

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

.nl-tea-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.nl-tea-hero-content {
  max-width: 690px;
  padding: 0;
}

.nl-tea-eyebrow,
.nl-tea-kicker {
  color: var(--tea-green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.nl-tea-hero h1 {
  max-width: 760px;
  color: var(--tea-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  line-height: 0.95;
  text-transform: none;
}

.nl-tea-hero p {
  max-width: 610px;
  color: var(--tea-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.nl-tea-button,
.nl-tea-mini-button,
body.nl-tea-site .woocommerce a.button,
body.nl-tea-site .woocommerce button.button,
body.nl-tea-site .woocommerce input.button,
body.nl-tea-site .woocommerce #payment #place_order {
  border-color: var(--tea-green);
  border-radius: 999px;
  background: var(--tea-green);
  box-shadow: 0 14px 28px rgba(47, 122, 78, 0.18);
  color: #fff;
  text-transform: none;
}

.nl-tea-button:hover,
.nl-tea-mini-button:hover,
body.nl-tea-site .woocommerce a.button:hover,
body.nl-tea-site .woocommerce button.button:hover,
body.nl-tea-site .woocommerce input.button:hover,
body.nl-tea-site .woocommerce #payment #place_order:hover {
  background: var(--tea-deep);
  border-color: var(--tea-deep);
  color: #fff;
}

.nl-tea-button-ghost {
  background: #fff;
  box-shadow: none;
  color: var(--tea-deep);
}

.nl-tea-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.nl-tea-proof span,
.nl-tea-notes span {
  border: 1px solid rgba(47, 122, 78, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #31523d;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
}

.nl-tea-feature-panel {
  min-height: 430px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(47, 122, 78, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(211, 235, 199, 0.92)),
    linear-gradient(135deg, #f9fff2, #dcefcf);
  box-shadow: 0 28px 70px rgba(31, 94, 62, 0.14);
}

.nl-tea-tin {
  display: grid;
  align-content: center;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(145deg, #f8fff0 0%, #d9eccd 58%, #a7c58d 100%);
  padding: 30px;
  color: var(--tea-deep);
}

.nl-tea-tin span {
  color: var(--tea-green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nl-tea-tin strong {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 0.96;
}

.nl-tea-tin small {
  margin-top: 14px;
  color: var(--tea-muted);
  font-size: 0.98rem;
}

.nl-tea-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nl-tea-section {
  padding: clamp(58px, 7vw, 98px) 0;
  border-bottom: 1px solid var(--tea-line);
}

.nl-tea-section-head {
  align-items: end;
  margin-bottom: 28px;
}

.nl-tea-section h2 {
  color: var(--tea-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 4.4rem);
  text-transform: none;
}

.nl-tea-products {
  gap: 18px;
}

.nl-tea-card {
  border: 1px solid rgba(47, 122, 78, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(31, 94, 62, 0.08);
}

.nl-tea-card-media {
  aspect-ratio: 1 / 1.06;
  margin: 12px 12px 0;
  border-radius: 14px;
  background:
    linear-gradient(145deg, #eef8e8 0%, #ffffff 56%, #d8ebcb 100%);
  color: rgba(23, 54, 41, 0.42);
}

.nl-tea-card-media span {
  width: min(78%, 170px);
  border: 1px dashed rgba(47, 122, 78, 0.24);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.62);
}

.nl-tea-card-body {
  padding: 18px 18px 20px;
}

.nl-tea-card-body h3,
.nl-tea-flow h3,
.nl-tea-flavor-grid h3 {
  color: var(--tea-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.nl-tea-card-body span,
.nl-tea-flow span,
.nl-tea-flavor-grid span {
  color: var(--tea-green);
}

.nl-tea-card-body p,
.nl-tea-flow p,
.nl-tea-flavor-grid p,
.nl-tea-section-head p,
.nl-tea-story p {
  color: var(--tea-muted);
}

.nl-tea-flavor-section {
  background: #fbfff6;
}

.nl-tea-flavor-grid,
.nl-tea-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nl-tea-flavor-grid article,
.nl-tea-flow article {
  min-height: 220px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(47, 122, 78, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 24px;
  box-shadow: 0 14px 36px rgba(31, 94, 62, 0.06);
}

.nl-tea-flow-section {
  background: #eef8e8;
}

.nl-tea-story {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  border: 1px solid rgba(47, 122, 78, 0.14);
  border-radius: 24px;
  background: #ffffff;
  padding: clamp(26px, 5vw, 46px);
  box-shadow: 0 18px 52px rgba(31, 94, 62, 0.08);
}

body.nl-tea-site input,
body.nl-tea-site textarea,
body.nl-tea-site select,
body.nl-tea-site .woocommerce form .form-row input.input-text,
body.nl-tea-site .woocommerce form .form-row textarea,
body.nl-tea-site .select2-container--default .select2-selection--single {
  border-color: rgba(47, 122, 78, 0.2);
  background: #ffffff;
  color: var(--tea-deep);
}

body.nl-tea-site .woocommerce,
body.nl-tea-site .woocommerce-page {
  color: var(--tea-muted);
}

body.nl-tea-site .woocommerce ul.products li.product,
body.nl-tea-site .woocommerce-page ul.products li.product,
body.nl-tea-site .woocommerce table.shop_table,
body.nl-tea-site .woocommerce-cart-form,
body.nl-tea-site .woocommerce-checkout-review-order,
body.nl-tea-site .woocommerce-checkout #payment,
body.nl-tea-site .woocommerce .woocommerce-customer-details address {
  border-color: rgba(47, 122, 78, 0.14);
  border-radius: 18px;
  background: #ffffff;
}

body.nl-tea-site .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.nl-tea-site .woocommerce div.product .product_title {
  color: var(--tea-deep);
  font-family: Georgia, "Times New Roman", serif;
}

body.nl-tea-site .woocommerce ul.products li.product .price,
body.nl-tea-site .woocommerce div.product p.price,
body.nl-tea-site .woocommerce div.product span.price {
  color: var(--tea-green);
}

@media (max-width: 900px) {
  body.nl-tea-site .nl-header-inner {
    gap: 14px;
  }

  .nl-tea-hero {
    min-height: auto;
    padding: 54px 0 58px;
  }

  .nl-tea-hero-grid,
  .nl-tea-flavor-grid,
  .nl-tea-flow,
  .nl-tea-story {
    grid-template-columns: 1fr;
  }

  .nl-tea-feature-panel {
    min-height: 320px;
  }

  .nl-tea-tin {
    min-height: 220px;
  }
}
