/* Nord & Loom — design system aligned with ErgoCraft reference tokens */

/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design tokens (source: ergocraft.vamtam.com) ────────────────────────── */
:root {
  /* Colors */
  --nl-bg:           #F6F6F3;   /* --e-global-color-vamtam_accent_1 */
  --nl-surface:      #EEEDE6;   /* --e-global-color-vamtam_accent_4 */
  --nl-text:         #212529;   /* --e-global-color-vamtam_accent_2 */
  --nl-muted:        #796F51;   /* --e-global-color-vamtam_accent_3 — also used as accent */
  --nl-border:       #CECDC3;   /* --e-global-color-vamtam_accent_7 */
  --nl-accent:       #796F51;   /* --e-global-color-vamtam_accent_3 */
  --nl-accent-dark:  #5C3A28;   /* hover/active states */
  --nl-white:        #FFFFFF;   /* --e-global-color-vamtam_accent_5 */
  --nl-black:        #000000;   /* --e-global-color-vamtam_accent_6 */
  --nl-text-80:      rgba(33,37,41,0.8); /* --e-global-color-0177c13 */
  --nl-sale:         #9E3E2F;
  --nl-success:      #55745B;

  /* Typography — Inter everywhere; Cormorant for hero display only */
  --nl-font-display: 'Cormorant', Georgia, serif;
  --nl-font-body:    'Inter', system-ui, sans-serif;

  /* Type scale (desktop) */
  --nl-size-display: clamp(1.5rem, 8vw, 8.5rem); /* hero italic Cormorant */
  --nl-size-h1:      48px;
  --nl-size-h2:      32px;
  --nl-size-h3:      24px;
  --nl-size-h4:      20px;
  --nl-size-h5:      14px;
  --nl-size-h6:      12px;
  --nl-size-body:    14px;
  --nl-size-ui:      14px;     /* buttons, labels */
  --nl-size-meta:    10px;     /* badges, fine print */

  /* Line heights */
  --nl-lh-tight:  1.1em;
  --nl-lh-normal: 1.3em;
  --nl-lh-loose:  1.4em;

  /* Layout */
  --nl-radius:       0px;      /* ErgoCraft uses 0px radius everywhere */
  --nl-container:    1320px;
  --nl-section-desktop: 100px;
  --nl-section-mobile:  60px;
  --nl-transition:      0.22s ease;

  /* Header */
  --nl-header-height:       80px;
  --nl-header-sticky-bg:    #212529;  /* --e-global-color-vamtam_sticky_header_bg_color */
}

/* ── Base reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--nl-bg);
  color: var(--nl-text);
  font-family: var(--nl-font-body);
  font-size: var(--nl-size-body);
  line-height: var(--nl-lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--nl-font-body);
  font-weight: 400;
  line-height: var(--nl-lh-tight);
  color: var(--nl-text);
  margin: 0 0 0.75em;
}

h1 { font-size: var(--nl-size-h1); }
h2 { font-size: var(--nl-size-h2); }
h3 { font-size: var(--nl-size-h3); }
h4 { font-size: var(--nl-size-h4); }
h5 { font-size: var(--nl-size-h5); font-weight: 600; }
h6 { font-size: var(--nl-size-h6); text-transform: uppercase; letter-spacing: 0.08em; }

/* Display / hero text uses Cormorant italic */
.nl-display,
.nl-hero__headline {
  font-family: var(--nl-font-display);
  font-weight: 300;
  font-style: italic;
  font-size: var(--nl-size-display);
  line-height: var(--nl-lh-tight);
}

a { color: var(--nl-text); text-decoration: none; }
a:hover { color: var(--nl-accent); }

p { margin: 0 0 1.25em; line-height: var(--nl-lh-loose); }

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

/* ── Elementor global variable overrides ─────────────────────────────────── */
/* These mirror the real ErgoCraft Elementor Kit so our Elementor templates
   automatically pick up the same tokens. */
:root {
  --e-global-color-vamtam_accent_1: var(--nl-bg);
  --e-global-color-vamtam_accent_2: var(--nl-text);
  --e-global-color-vamtam_accent_3: var(--nl-accent);
  --e-global-color-vamtam_accent_4: var(--nl-surface);
  --e-global-color-vamtam_accent_5: var(--nl-white);
  --e-global-color-vamtam_accent_6: var(--nl-black);
  --e-global-color-vamtam_accent_7: var(--nl-border);
  --e-global-color-vamtam_sticky_header_bg_color: var(--nl-header-sticky-bg);
  --e-global-typography-vamtam_primary_font-font-family: "Inter";
  --e-global-typography-vamtam_primary_font-font-size: 14px;
  --e-global-typography-vamtam_primary_font-font-weight: 400;
  --e-global-typography-vamtam_primary_font-line-height: 1.3em;
  --e-global-typography-vamtam_h1-font-family: "Inter";
  --e-global-typography-vamtam_h1-font-size: 48px;
  --e-global-typography-vamtam_h1-font-weight: 400;
  --e-global-typography-vamtam_h1-line-height: 1.1em;
  --e-global-typography-vamtam_h2-font-family: "Inter";
  --e-global-typography-vamtam_h2-font-size: 32px;
  --e-global-typography-vamtam_h2-font-weight: 400;
  --e-global-typography-vamtam_h2-line-height: 1.1em;
  --e-global-typography-vamtam_h3-font-family: "Inter";
  --e-global-typography-vamtam_h3-font-size: 24px;
  --e-global-typography-vamtam_h3-font-weight: 400;
  --e-global-typography-vamtam_h3-line-height: 1.1em;
  --e-global-typography-vamtam_h4-font-family: "Inter";
  --e-global-typography-vamtam_h4-font-size: 20px;
  --e-global-typography-vamtam_h4-font-weight: 400;
  --e-global-typography-vamtam_h4-line-height: 1.1em;
  --e-global-typography-vamtam_h5-font-family: "Inter";
  --e-global-typography-vamtam_h5-font-size: 14px;
  --e-global-typography-vamtam_h5-font-weight: 600;
  --e-global-typography-vamtam_h5-line-height: 1.15em;
  --e-global-typography-vamtam_h6-font-family: "Inter";
  --e-global-typography-vamtam_h6-font-size: 12px;
  --e-global-typography-vamtam_h6-font-weight: 400;
  --e-global-typography-vamtam_h6-text-transform: uppercase;
  --e-global-typography-vamtam_h6-line-height: 1.2em;
  /* Display / hero italic Cormorant */
  --e-global-typography-51d9a29-font-family: "Cormorant";
  --e-global-typography-51d9a29-font-size: clamp(1.5rem, 8vw, 8.5rem);
  --e-global-typography-51d9a29-font-weight: 300;
  --e-global-typography-51d9a29-font-style: italic;
  --e-global-typography-51d9a29-line-height: 1.2em;
}

/* ── Announcement bar ────────────────────────────────────────────────────── */
.nl-announcement-bar {
  height: 36px;
  background: var(--nl-text);
  color: var(--nl-bg);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.nl-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nl-header-height);
  display: flex;
  align-items: center;
  background: var(--nl-white);
  border-bottom: 1px solid var(--nl-border);
  transition: background var(--nl-transition);
}

/* Transparent header over hero on homepage */
.home .nl-header--transparent {
  background: transparent;
  border-bottom-color: transparent;
  position: absolute;
  width: 100%;
}

.nl-header--sticky {
  background: var(--nl-header-sticky-bg);
  border-bottom-color: transparent;
}

.nl-header__inner {
  width: 100%;
  max-width: var(--nl-container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nl-header__logo {
  font-family: var(--nl-font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--nl-text);
  white-space: nowrap;
  flex-shrink: 0;
}

.nl-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nl-header__nav a {
  font-size: var(--nl-size-ui);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nl-text);
  white-space: nowrap;
}

.nl-header__nav a:hover { color: var(--nl-accent); }

.nl-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.nl-btn,
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nl-font-body);
  font-size: var(--nl-size-meta);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--nl-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--nl-transition), border-color var(--nl-transition), color var(--nl-transition);
  white-space: nowrap;
  line-height: 1;
}

/* Primary — accent fill */
.nl-btn-primary,
.woocommerce .button.alt,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce #place_order {
  background: var(--nl-accent);
  color: var(--nl-surface) !important;
  border-color: var(--nl-accent);
}

.nl-btn-primary:hover,
.woocommerce .button.alt:hover,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce #place_order:hover {
  background: var(--nl-accent-dark);
  border-color: var(--nl-accent-dark);
  color: var(--nl-surface) !important;
}

/* Secondary — dark fill */
.nl-btn-dark {
  background: var(--nl-text);
  color: var(--nl-white) !important;
  border-color: var(--nl-text);
}

.nl-btn-dark:hover {
  background: #000;
  border-color: #000;
  color: var(--nl-white) !important;
}

/* Outline */
.nl-btn-outline {
  background: transparent;
  color: var(--nl-text);
  border-color: var(--nl-border);
}

.nl-btn-outline:hover {
  border-color: var(--nl-text);
  color: var(--nl-text);
}

/* Ghost — white for dark backgrounds */
.nl-btn-ghost {
  background: transparent;
  color: var(--nl-white) !important;
  border-color: rgba(255,255,255,0.5);
}

.nl-btn-ghost:hover {
  border-color: var(--nl-white);
}

/* ── Section scaffold ─────────────────────────────────────────────────────── */
.nl-section {
  padding: var(--nl-section-desktop) 0;
}

.nl-section--dark {
  background: var(--nl-text);
  color: var(--nl-white);
}

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

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

.nl-container {
  max-width: var(--nl-container);
  margin: 0 auto;
  padding: 0 40px;
}

.nl-section__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nl-muted);
  margin-bottom: 16px;
  display: block;
}

.nl-section__heading {
  font-family: var(--nl-font-body);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: var(--nl-lh-tight);
  margin: 0 0 16px;
}

.nl-section__sub {
  font-size: 14px;
  color: var(--nl-muted);
  line-height: var(--nl-lh-loose);
  max-width: 520px;
  margin: 0 0 48px;
}

/* ── Hero section ─────────────────────────────────────────────────────────── */
.nl-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--nl-surface);
}

.nl-hero__bg {
  position: absolute;
  inset: 0;
}

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

.nl-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--nl-container);
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
}

.nl-hero__headline {
  font-family: var(--nl-font-display);
  font-weight: 300;
  font-style: italic;
  font-size: var(--nl-size-display);
  line-height: 1.0;
  color: var(--nl-white);
  max-width: 800px;
  margin: 0 0 32px;
}

.nl-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 420px;
  line-height: var(--nl-lh-loose);
  margin-bottom: 40px;
}

.nl-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Product cards ────────────────────────────────────────────────────────── */
.nl-product-card,
.woocommerce ul.products li.product {
  background: var(--nl-white);
  border: none;
  border-radius: var(--nl-radius);
  overflow: hidden;
  position: relative;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.04);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--nl-font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--nl-text);
  padding: 16px 0 4px;
  line-height: 1.3;
}

.woocommerce ul.products li.product .price {
  font-family: var(--nl-font-body);
  font-size: 14px;
  color: var(--nl-muted);
  padding: 0;
}

.woocommerce ul.products li.product .price ins {
  color: var(--nl-accent);
  text-decoration: none;
}

/* Sale badge */
.woocommerce span.onsale {
  background: var(--nl-text);
  color: var(--nl-white);
  border-radius: var(--nl-radius);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-width: auto;
  min-height: auto;
  line-height: 1;
  padding: 6px 10px;
  top: 16px;
  left: 16px;
}

/* Quick add hover */
.woocommerce ul.products li.product .button {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  background: var(--nl-text);
  color: var(--nl-white) !important;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 0;
  width: 100%;
}

.woocommerce ul.products li.product:hover .button {
  opacity: 1;
  transform: translateY(0);
}

/* ── Category tiles ───────────────────────────────────────────────────────── */
.nl-category-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--nl-surface);
}

.nl-category-tile img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nl-category-tile:hover img {
  transform: scale(1.04);
}

.nl-category-tile__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 56px 20px 24px;
  background: linear-gradient(to top, rgba(33,37,41,0.6) 0%, transparent 100%);
  color: var(--nl-white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── Product grid ─────────────────────────────────────────────────────────── */
.nl-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) { .nl-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .nl-product-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ── Category grid ────────────────────────────────────────────────────────── */
.nl-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 900px)  { .nl-category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .nl-category-grid { grid-template-columns: 1fr 1fr; } }

/* ── Editorial split block ────────────────────────────────────────────────── */
.nl-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
}

.nl-editorial__image {
  overflow: hidden;
}

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

.nl-editorial__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--nl-surface);
}

.nl-editorial--reverse .nl-editorial__image { order: 2; }
.nl-editorial--reverse .nl-editorial__content { order: 1; }

@media (max-width: 768px) {
  .nl-editorial { grid-template-columns: 1fr; min-height: auto; }
  .nl-editorial__content { padding: 48px 24px; }
  .nl-editorial--reverse .nl-editorial__image { order: 0; }
  .nl-editorial--reverse .nl-editorial__content { order: 0; }
}

/* ── Trust strip ──────────────────────────────────────────────────────────── */
.nl-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--nl-border);
  border-bottom: 1px solid var(--nl-border);
}

.nl-trust-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--nl-border);
}

.nl-trust-item:last-child { border-right: none; }

.nl-trust-item__icon {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--nl-accent);
}

.nl-trust-item__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--nl-text);
  margin-bottom: 6px;
}

.nl-trust-item__sub {
  font-size: 12px;
  color: var(--nl-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .nl-trust-strip { grid-template-columns: repeat(2, 1fr); }
  .nl-trust-item:nth-child(2) { border-right: none; }
  .nl-trust-item:nth-child(3),
  .nl-trust-item:nth-child(4) { border-top: 1px solid var(--nl-border); }
}

/* ── Brand logos strip ────────────────────────────────────────────────────── */
.nl-brands-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding: 48px 40px;
  background: var(--nl-white);
  border-top: 1px solid var(--nl-border);
}

.nl-brands-strip img {
  height: 28px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity var(--nl-transition), filter var(--nl-transition);
}

.nl-brands-strip img:hover { opacity: 1; filter: none; }

/* ── Newsletter ───────────────────────────────────────────────────────────── */
.nl-newsletter {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.nl-newsletter__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nl-muted);
  margin-bottom: 16px;
}

.nl-newsletter__heading {
  font-family: var(--nl-font-body);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

.nl-newsletter__sub {
  font-size: 14px;
  color: var(--nl-muted);
  margin-bottom: 32px;
  line-height: var(--nl-lh-loose);
}

.nl-newsletter__form {
  display: flex;
  gap: 0;
  border: 1px solid var(--nl-border);
  background: var(--nl-white);
}

.nl-newsletter__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: var(--nl-font-body);
  font-size: 14px;
  background: transparent;
  color: var(--nl-text);
}

.nl-newsletter__input::placeholder { color: var(--nl-muted); }

.nl-newsletter__submit {
  background: var(--nl-text);
  color: var(--nl-white);
  border: none;
  padding: 14px 28px;
  font-family: var(--nl-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--nl-transition);
  white-space: nowrap;
}

.nl-newsletter__submit:hover { background: var(--nl-accent); }

/* ── WooCommerce shop archive ─────────────────────────────────────────────── */
.woocommerce-page .woocommerce {
  max-width: var(--nl-container);
  margin: 0 auto;
  padding: 0 40px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-products-header__title,
.woocommerce-page h1.page-title {
  font-family: var(--nl-font-body);
  font-size: 40px;
  font-weight: 400;
  color: var(--nl-text);
}

.woocommerce-ordering select,
.woocommerce-page select {
  border: 1px solid var(--nl-border);
  background: var(--nl-white);
  font-family: var(--nl-font-body);
  font-size: 13px;
  padding: 8px 12px;
  color: var(--nl-text);
  appearance: none;
}

/* Shop sidebar filters */
.woocommerce .widget_layered_nav ul li a,
.woocommerce .widget_price_filter .price_slider_amount {
  font-size: 13px;
  color: var(--nl-text);
}

.woocommerce .widget_layered_nav ul li.chosen a {
  font-weight: 600;
  color: var(--nl-accent);
}

@media (max-width: 1024px) { .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .woocommerce ul.products { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ── Single product ───────────────────────────────────────────────────────── */
.woocommerce div.product .product_title {
  font-family: var(--nl-font-body);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--nl-text);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 20px;
  font-weight: 400;
  color: var(--nl-text);
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  color: var(--nl-border);
  font-size: 16px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--nl-muted);
  font-size: 14px;
  line-height: 1.7;
  border-top: 1px solid var(--nl-border);
  padding-top: 20px;
  margin-top: 20px;
}

/* Product accordion tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid var(--nl-border);
  border-radius: 0;
  background: var(--nl-white);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--nl-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nl-muted);
}

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

/* Quantity input */
.woocommerce .quantity .qty {
  border: 1px solid var(--nl-border);
  background: var(--nl-white);
  font-family: var(--nl-font-body);
  font-size: 14px;
  padding: 10px 14px;
  width: 72px;
  color: var(--nl-text);
  border-radius: 0;
}

/* ── Cart ─────────────────────────────────────────────────────────────────── */
.woocommerce table.shop_table {
  border-color: var(--nl-border);
  border-radius: 0;
}

.woocommerce table.shop_table th {
  font-family: var(--nl-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nl-muted);
  background: var(--nl-surface);
  padding: 16px 12px;
}

.woocommerce table.shop_table td {
  padding: 20px 12px;
  border-color: var(--nl-border);
  vertical-align: middle;
}

/* ── Checkout ─────────────────────────────────────────────────────────────── */
.woocommerce-checkout h3,
.woocommerce-checkout #order_review_heading {
  font-family: var(--nl-font-body);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--nl-border);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  border: 1px solid var(--nl-border);
  background: var(--nl-white);
  border-radius: 0;
  font-family: var(--nl-font-body);
  font-size: 14px;
  color: var(--nl-text);
  padding: 12px 16px;
}

/* ── Form inputs (global) ─────────────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
textarea {
  border: 1px solid var(--nl-border);
  background: var(--nl-white);
  border-radius: 0;
  font-family: var(--nl-font-body);
  font-size: 14px;
  color: var(--nl-text);
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color var(--nl-transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: var(--nl-text);
}

/* ── Breadcrumbs ──────────────────────────────────────────────────────────── */
.woocommerce-breadcrumb {
  font-size: 12px;
  color: var(--nl-muted);
  margin-bottom: 32px;
}

.woocommerce-breadcrumb a { color: var(--nl-muted); }
.woocommerce-breadcrumb a:hover { color: var(--nl-text); }

/* ── Blog / Journal cards ─────────────────────────────────────────────────── */
.nl-journal-card {
  background: var(--nl-white);
  overflow: hidden;
}

.nl-journal-card__image {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.nl-journal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nl-journal-card:hover .nl-journal-card__image img {
  transform: scale(1.04);
}

.nl-journal-card__body {
  padding: 24px 0;
}

.nl-journal-card__cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nl-muted);
  margin-bottom: 10px;
  display: block;
}

.nl-journal-card__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--nl-text);
  margin-bottom: 12px;
}

.nl-journal-card__excerpt {
  font-size: 14px;
  color: var(--nl-muted);
  line-height: var(--nl-lh-loose);
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.nl-footer {
  background: var(--nl-text);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 40px;
}

.nl-footer a { color: rgba(255,255,255,0.65); }
.nl-footer a:hover { color: var(--nl-white); }

.nl-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.nl-footer__brand {
  font-family: var(--nl-font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--nl-white);
  margin-bottom: 16px;
}

.nl-footer__tagline {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.nl-footer__col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nl-white);
  margin-bottom: 20px;
  display: block;
}

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

.nl-footer__col li {
  margin-bottom: 12px;
  font-size: 13px;
}

.nl-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .nl-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .nl-footer__grid { grid-template-columns: 1fr; }
}

/* ── Elementor overrides ──────────────────────────────────────────────────── */
.elementor-widget-heading .elementor-heading-title {
  line-height: var(--nl-lh-tight);
}

.elementor-section.elementor-section-stretched {
  left: 0 !important;
  width: 100% !important;
}

/* Remove default Elementor button radius */
.elementor-button {
  border-radius: 0 !important;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --nl-size-h1: 38px;
    --nl-size-h2: 26px;
    --nl-size-h3: 21px;
    --nl-size-h4: 19px;
    --nl-section-desktop: 60px;
  }
  .nl-section { padding: var(--nl-section-mobile) 0; }
  .nl-container { padding: 0 20px; }
  .nl-hero__content { padding: 60px 20px; }
  .woocommerce-page .woocommerce { padding: 0 20px; }
  .nl-header__inner { padding: 0 20px; }
  .nl-trust-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  :root {
    --nl-size-h1: 26px;
    --nl-size-h2: 21px;
    --nl-size-h3: 19px;
    --nl-size-display: clamp(2.5rem, 10vw, 4rem);
  }
}
