/* ==========================================================================
   New World TCG — Master Stylesheet
   Mobile-first. All shared components defined here.
   WooCommerce agent reuses: .nw-btn, .nw-card, .nw-badge, .nw-divider,
   .nw-price, .nw-chip, .nw-heading, .nw-eyebrow, .nw-container, .nw-section
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Core palette */
  --nw-ink:          #1c1410;
  --nw-bg:           #15100c;
  --nw-bg-2:         #211812;
  --nw-panel:        #2a1f17;
  --nw-cream:        #f5ecd7;
  --nw-cream-2:      #efe3c8;
  --nw-paper:        #fbf6ea;

  /* Accents */
  --nw-gold:         #c9a227;
  --nw-gold-2:       #e3c45a;
  --nw-gold-deep:    #9a7b1e;
  --nw-red:          #a01e1e;
  --nw-red-2:        #c0302f;
  --nw-orange:       #e8932a;

  /* Text */
  --nw-text:         #2a2018;
  --nw-text-soft:    #6b5d49;
  --nw-text-inv:     #f3ead6;
  --nw-text-inv-soft:#c9b397;

  /* UI */
  --nw-line:         rgba(201,162,39,.28);
  --nw-line-light:   #e2d4b4;
  --nw-radius:       10px;
  --nw-radius-lg:    16px;
  --nw-shadow:       0 8px 28px rgba(0,0,0,.35);
  --nw-shadow-card:  0 4px 16px rgba(28,20,16,.12);
  --nw-maxw:         1200px;

  /* Type */
  --nw-font-display: 'Cinzel', Georgia, serif;
  --nw-font-body:    'Inter', system-ui, sans-serif;
}

/* --------------------------------------------------------------------------
   2. CSS Reset / Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: var(--nw-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--nw-text);
  background-color: var(--nw-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   3. Focus ring — gold, visible everywhere
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--nw-gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   4. Layout utilities
   -------------------------------------------------------------------------- */
.nw-container {
  width: min(100% - 2rem, var(--nw-maxw));
  margin-inline: auto;
}

.nw-section {
  padding-block: clamp(2rem, 6vw, 4rem);
}

/* --------------------------------------------------------------------------
   5. Typography components
   -------------------------------------------------------------------------- */
.nw-heading {
  font-family: var(--nw-font-display);
  font-weight: 700;
  color: var(--nw-gold);
  letter-spacing: .04em;
  line-height: 1.2;
}

.nw-eyebrow {
  font-family: var(--nw-font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nw-gold);
  display: block;
  margin-bottom: .5rem;
}

/* --------------------------------------------------------------------------
   6. Ornamental divider (.nw-divider)
   Rule + centered ◆ diamond glyph. Works on both light and dark backgrounds.
   -------------------------------------------------------------------------- */
.nw-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-block: 1rem;
  color: var(--nw-gold);
}

.nw-divider::before,
.nw-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--nw-gold);
  opacity: .45;
}

.nw-divider__gem {
  font-size: .6rem;
  letter-spacing: 0;
  line-height: 1;
  color: var(--nw-gold);
  flex-shrink: 0;
}

/* Standalone usage — render without wrapper element (aria-hidden span inside) */
.nw-divider--standalone {
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. Buttons (.nw-btn + variants)
   Reused by WooCommerce agent for Add-to-Cart, Bekijk Product, etc.
   -------------------------------------------------------------------------- */
.nw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--nw-font-body);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .65em 1.5em;
  min-height: 44px;
  min-width: 44px;
  border-radius: var(--nw-radius);
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.2;
}

/* Primary — crimson */
.nw-btn--primary {
  background: var(--nw-red);
  color: var(--nw-cream);
  border-color: var(--nw-red);
}
.nw-btn--primary:hover,
.nw-btn--primary:focus-visible {
  background: var(--nw-red-2);
  border-color: var(--nw-red-2);
  box-shadow: 0 4px 16px rgba(160,30,30,.4);
}

/* Gold — homepage hero CTA */
.nw-btn--gold {
  background: linear-gradient(135deg, var(--nw-gold-2) 0%, var(--nw-gold) 50%, var(--nw-gold-deep) 100%);
  color: var(--nw-ink);
  border-color: var(--nw-gold-deep);
  font-weight: 700;
}
.nw-btn--gold:hover,
.nw-btn--gold:focus-visible {
  background: linear-gradient(135deg, #f0d870 0%, var(--nw-gold-2) 50%, var(--nw-gold) 100%);
  box-shadow: 0 4px 20px rgba(201,162,39,.45);
}

/* Outline — ghost on dark (gold border/text) or light (ink border) */
.nw-btn--outline {
  background: transparent;
  color: var(--nw-cream);
  border-color: var(--nw-gold);
}
.nw-btn--outline:hover,
.nw-btn--outline:focus-visible {
  background: rgba(201,162,39,.12);
  color: var(--nw-gold-2);
}

/* On light background override */
.nw-light .nw-btn--outline,
.nw-btn--outline-dark {
  color: var(--nw-ink);
  border-color: var(--nw-ink);
}
.nw-light .nw-btn--outline:hover,
.nw-btn--outline-dark:hover {
  background: rgba(28,20,16,.06);
}

/* Block */
.nw-btn--block {
  width: 100%;
}

/* Small variant */
.nw-btn--sm {
  font-size: .7rem;
  padding: .45em 1em;
  min-height: 36px;
}

/* --------------------------------------------------------------------------
   8. Badges (.nw-badge)
   Reused by WooCommerce agent on product cards.
   -------------------------------------------------------------------------- */
.nw-badge {
  display: inline-block;
  font-family: var(--nw-font-body);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25em .65em;
  border-radius: 4px;
  line-height: 1.4;
  border: 1.5px solid transparent;
}

.nw-badge--available {
  background: var(--nw-red);
  color: #fff;
  border-color: var(--nw-red);
}

.nw-badge--preorder {
  background: transparent;
  color: var(--nw-gold);
  border-color: var(--nw-gold);
}

.nw-badge--soldout {
  background: rgba(100,90,80,.25);
  color: var(--nw-text-inv-soft);
  border-color: rgba(100,90,80,.4);
}

/* --------------------------------------------------------------------------
   9. Filter chips (.nw-chip)
   Used by WooCommerce agent for Taal / Beschikbaarheid filters.
   -------------------------------------------------------------------------- */
.nw-chip {
  display: inline-flex;
  align-items: center;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .3em .9em;
  border-radius: 50px;
  border: 1.5px solid var(--nw-line);
  color: var(--nw-text-inv);
  background: transparent;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  min-height: 36px;
}

.nw-chip:hover,
.nw-chip.is-active {
  border-color: var(--nw-gold);
  color: var(--nw-gold);
  background: rgba(201,162,39,.08);
}

/* --------------------------------------------------------------------------
   10. Card (.nw-card)
   Core reusable card — WooCommerce agent builds on this for product cards.
   -------------------------------------------------------------------------- */
.nw-card {
  background: var(--nw-cream);
  border: 1px solid var(--nw-line-light);
  border-radius: var(--nw-radius-lg);
  box-shadow: var(--nw-shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}

.nw-card:hover {
  box-shadow: 0 8px 32px rgba(28,20,16,.18);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .nw-card:hover {
    transform: none;
  }
}

.nw-card__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--nw-cream-2);
  position: relative;
}

.nw-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .nw-card:hover .nw-card__image img {
    transform: none;
  }
}

.nw-card__badge {
  position: absolute;
  top: .6rem;
  left: .6rem;
  z-index: 1;
}

.nw-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.nw-card__title {
  font-family: var(--nw-font-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--nw-ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nw-card__meta {
  font-size: .75rem;
  color: var(--nw-text-soft);
}

.nw-card__footer {
  padding: .75rem 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   11. Price (.nw-price)
   -------------------------------------------------------------------------- */
.nw-price {
  font-family: var(--nw-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--nw-gold);
  letter-spacing: .02em;
  line-height: 1;
}

.nw-price--lg {
  font-size: 1.5rem;
}

.nw-price del {
  font-size: .8em;
  color: var(--nw-text-soft);
  font-weight: 400;
  margin-right: .35em;
  text-decoration: line-through;
}

/* --------------------------------------------------------------------------
   12. Topbar (.nw-topbar)
   -------------------------------------------------------------------------- */
.nw-topbar {
  background: var(--nw-bg);
  color: var(--nw-text-inv-soft);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .04em;
  min-height: 36px;
  display: flex;
  align-items: center;
}

.nw-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-block: .4rem;
}

.nw-topbar__msg {
  display: flex;
  align-items: center;
  gap: .35em;
  white-space: nowrap;
}

.nw-topbar__msg--hide-sm {
  display: none;
}

.nw-topbar__klarna {
  display: inline-flex;
  align-items: center;
  gap: .3em;
}

.nw-topbar__klarna-pill {
  background: #ffb3c7;
  color: #1a0a1a;
  font-weight: 700;
  font-size: .6rem;
  padding: .1em .45em;
  border-radius: 3px;
  letter-spacing: .05em;
}

@media (min-width: 600px) {
  .nw-topbar__msg--hide-sm {
    display: flex;
  }
}

@media (min-width: 900px) {
  .nw-topbar__inner {
    justify-content: space-between;
  }
}

/* --------------------------------------------------------------------------
   13. Main Header (.nw-header)
   -------------------------------------------------------------------------- */
.nw-header {
  background: var(--nw-paper);
  border-bottom: 1px solid var(--nw-line-light);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .2s ease;
}

.nw-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(28,20,16,.12);
}

.nw-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding-block: .5rem;
}

/* Logo */
.nw-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nw-logo__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nw-logo__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nw-logo__name {
  font-family: var(--nw-font-display);
  font-size: .9rem;
  font-weight: 800;
  color: var(--nw-ink);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nw-logo__sub {
  font-family: var(--nw-font-body);
  font-size: .55rem;
  font-weight: 500;
  color: var(--nw-text-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Primary Nav — hidden on mobile, shown md+ */
.nw-nav {
  display: none;
}

.nw-nav__menu {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.nw-nav__menu .menu-item > a {
  display: flex;
  align-items: center;
  gap: .2em;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--nw-ink);
  padding: .5em .65em;
  border-radius: 6px;
  min-height: 44px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}

.nw-nav__menu .menu-item > a:hover,
.nw-nav__menu .menu-item.current-menu-item > a,
.nw-nav__menu .menu-item.current-page-ancestor > a {
  color: var(--nw-orange);
}

.nw-nav__menu .menu-item.current-menu-item > a {
  border-bottom: 2px solid var(--nw-orange);
}

/* Header actions */
.nw-header__actions {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.nw-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--nw-ink);
  transition: background .15s, color .15s;
  text-decoration: none;
  position: relative;
}

.nw-header__icon:hover {
  background: rgba(28,20,16,.06);
  color: var(--nw-gold-deep);
}

.nw-header__icon svg {
  width: 22px;
  height: 22px;
}

/* The search toggle is a <button> — strip native button chrome. */
.nw-search-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

/* --------------------------------------------------------------------------
   Search panel (slides down under the header; toggled by JS)
   -------------------------------------------------------------------------- */
.nw-search-panel {
  background: var(--nw-bg-2);
  border-top: 1px solid var(--nw-line);
  border-bottom: 1px solid var(--nw-line);
  box-shadow: var(--nw-shadow);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .25s ease, opacity .2s ease;
}
.nw-search-panel.is-open {
  max-height: 200px;
  opacity: 1;
}
.nw-search-panel[hidden] {
  display: none;
}

.nw-search-form {
  display: flex;
  gap: .5rem;
  align-items: stretch;
  padding-block: .9rem;
}

.nw-search-form__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  padding: 0 1rem;
  font-family: var(--nw-font-body);
  font-size: 1rem;
  color: var(--nw-text-inv);
  background: var(--nw-bg);
  border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius);
  outline: none;
}
.nw-search-form__input::placeholder {
  color: var(--nw-text-inv-soft);
}
.nw-search-form__input:focus-visible {
  border-color: var(--nw-gold);
  box-shadow: 0 0 0 2px rgba(201,162,39,.35);
}

.nw-search-form__submit {
  flex: 0 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .nw-search-panel { transition: none; }
}

/* Cart count bubble */
.nw-cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--nw-red);
  color: #fff;
  font-size: .55rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  pointer-events: none;
}

.nw-cart-count[data-count="0"],
.nw-cart-count:empty {
  display: none;
}

/* Hamburger */
.nw-hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--nw-ink);
  transition: background .15s;
}

.nw-hamburger:hover {
  background: rgba(28,20,16,.06);
}

.nw-hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease, width .22s ease;
  transform-origin: center;
}

.nw-hamburger[aria-expanded="true"] .nw-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nw-hamburger[aria-expanded="true"] .nw-hamburger__bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nw-hamburger[aria-expanded="true"] .nw-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .nw-nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  .nw-hamburger {
    display: none;
  }

  .nw-logo__name {
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------
   14. Mobile Nav Drawer (.nw-drawer)
   -------------------------------------------------------------------------- */
.nw-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,10,8,.65);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.nw-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nw-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--nw-bg-2);
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nw-drawer.is-open {
  transform: translateX(0);
}

.nw-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--nw-line);
}

.nw-drawer__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.nw-drawer__logo-icon {
  width: 32px;
  height: 32px;
}

.nw-drawer__logo-name {
  font-family: var(--nw-font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--nw-gold);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nw-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--nw-text-inv-soft);
  transition: background .15s, color .15s;
}

.nw-drawer__close:hover {
  background: rgba(255,255,255,.08);
  color: var(--nw-gold);
}

.nw-drawer__close svg {
  width: 20px;
  height: 20px;
}

.nw-drawer__nav {
  padding: 1rem 0;
  flex: 1;
}

.nw-drawer__menu {
  display: flex;
  flex-direction: column;
}

.nw-drawer__menu .menu-item > a {
  display: flex;
  align-items: center;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--nw-text-inv);
  padding: .9rem 1.5rem;
  min-height: 52px;
  transition: color .15s, background .15s;
  border-left: 3px solid transparent;
}

.nw-drawer__menu .menu-item > a:hover,
.nw-drawer__menu .menu-item.current-menu-item > a {
  color: var(--nw-gold);
  background: rgba(201,162,39,.06);
  border-left-color: var(--nw-gold);
}

.nw-drawer__footer {
  padding: 1.25rem;
  border-top: 1px solid var(--nw-line);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.nw-drawer__footer-actions {
  display: flex;
  gap: .5rem;
}

@media (min-width: 900px) {
  .nw-drawer,
  .nw-drawer-overlay {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   15. Footer (.nw-footer)
   -------------------------------------------------------------------------- */
.nw-footer {
  background:
    radial-gradient(1200px 600px at 50% -10%, #2a1d13 0%, transparent 60%),
    linear-gradient(180deg, #1a130d 0%, var(--nw-bg) 100%);
  color: var(--nw-text-inv);
}

.nw-footer__trustbar {
  border-top: 1px solid var(--nw-line);
  border-bottom: 1px solid var(--nw-line);
  padding-block: 1.25rem;
}

.nw-footer__trust-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.nw-footer__trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nw-footer__trust-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--nw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nw-footer__trust-icon svg {
  width: 28px;
  height: 28px;
}

.nw-footer__trust-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--nw-gold);
  display: block;
  text-transform: uppercase;
}

.nw-footer__trust-sub {
  font-size: .7rem;
  color: var(--nw-text-inv-soft);
}

.nw-footer__main {
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.nw-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.nw-footer__brand-icon {
  width: 56px;
  height: 56px;
  opacity: .85;
}

.nw-footer__brand-name {
  font-family: var(--nw-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--nw-gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nw-footer__tagline {
  font-size: .7rem;
  color: var(--nw-text-inv-soft);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nw-footer__nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .25rem .5rem;
}

.nw-footer__nav-menu .menu-item > a {
  font-size: .75rem;
  font-weight: 500;
  color: var(--nw-text-inv-soft);
  padding: .4em .6em;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  transition: color .15s;
}

.nw-footer__nav-menu .menu-item > a:hover {
  color: var(--nw-gold);
}

.nw-footer__sep {
  color: var(--nw-line);
}

.nw-footer__bottom {
  border-top: 1px solid var(--nw-line);
  padding-block: .85rem;
  text-align: center;
  font-size: .68rem;
  color: var(--nw-text-inv-soft);
  letter-spacing: .05em;
}

@media (min-width: 600px) {
  .nw-footer__trust-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
  }
}

@media (min-width: 900px) {
  .nw-footer__trust-inner {
    justify-content: space-around;
  }
}

/* --------------------------------------------------------------------------
   16. Homepage — Hero (.nw-hero)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Hero slider (carousel wrapping the welcome panel + latest-set slides)
   -------------------------------------------------------------------------- */
.nw-hero-slider {
  position: relative;
  overflow: hidden;
  background: #0e0a08;
}

.nw-hero-slider__viewport {
  overflow: hidden;
}

.nw-hero-slider__track {
  display: flex;
  will-change: transform;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.nw-hero__slide {
  flex: 0 0 100%;
  min-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .nw-hero-slider__track { transition: none; }
}

/* ── Set slide: full-bleed main image + scrim + caption ── */
.nw-hero-set {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(480px, 72vw, 640px);
  text-decoration: none;
  color: var(--nw-text-inv);
  overflow: hidden;
}

.nw-hero-set__img {
  position: absolute;
  inset: 0;
  background-image: var(--nw-set-img);
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.nw-hero-set:hover .nw-hero-set__img,
.nw-hero-set:focus-visible .nw-hero-set__img {
  transform: scale(1.04);
}

.nw-hero-set__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(14,10,8,.92) 0%, rgba(14,10,8,.55) 35%, rgba(14,10,8,.15) 60%, rgba(14,10,8,.35) 100%),
    radial-gradient(120% 80% at 15% 90%, rgba(14,10,8,.7) 0%, transparent 60%);
}

.nw-hero-set__body {
  position: relative;
  width: min(100% - 2rem, var(--nw-maxw));
  margin-inline: auto;
  padding-block: clamp(1.75rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}

.nw-hero-set__eyebrow {
  font-family: var(--nw-font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--nw-gold-2);
}

.nw-hero-set__code {
  font-family: var(--nw-font-display);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--nw-gold);
  line-height: 1;
  text-shadow: 0 2px 18px rgba(0,0,0,.6);
}

.nw-hero-set__title {
  font-family: var(--nw-font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 600;
  color: var(--nw-text-inv);
  max-width: 38ch;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
}

.nw-hero-set__cta {
  margin-top: .9rem;
  pointer-events: none; /* whole slide is the link */
}

/* ── Arrows ── */
.nw-hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nw-line);
  border-radius: 50%;
  background: rgba(20,16,12,.55);
  color: var(--nw-gold-2);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .15s, color .15s, border-color .15s;
}
.nw-hero-slider__arrow:hover,
.nw-hero-slider__arrow:focus-visible {
  background: rgba(20,16,12,.85);
  border-color: var(--nw-gold);
  color: var(--nw-gold);
}
.nw-hero-slider__arrow--prev { left: .65rem; }
.nw-hero-slider__arrow--next { right: .65rem; }

@media (min-width: 768px) {
  .nw-hero-slider__arrow--prev { left: 1.25rem; }
  .nw-hero-slider__arrow--next { right: 1.25rem; }
}

/* ── Dots ── */
.nw-hero-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: .85rem;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: .5rem;
}
.nw-hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--nw-gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.nw-hero-slider__dot.is-active {
  background: var(--nw-gold);
  transform: scale(1.2);
}

.nw-hero {
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(232,147,42,.12) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 20% 80%, rgba(160,30,30,.15) 0%, transparent 60%),
    linear-gradient(160deg, #0e0a08 0%, #1c1208 35%, #15100c 100%);
  color: var(--nw-text-inv);
  overflow: hidden;
  position: relative;
  min-height: clamp(480px, 72vw, 640px);
  display: flex;
  align-items: center;
}

/* Subtle texture overlay */
.nw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,.04) 3px,
      rgba(0,0,0,.04) 4px
    );
  pointer-events: none;
  z-index: 0;
}

.nw-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-block: clamp(2rem, 6vw, 4rem);
}

.nw-hero__content {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 560px;
}

.nw-hero__eyebrow {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--nw-gold-2);
}

.nw-hero__title {
  font-family: var(--nw-font-display);
  font-weight: 800;
  line-height: .95;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.nw-hero__title-outline {
  display: block;
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  color: transparent;
  -webkit-text-stroke: 2px rgba(201,162,39,.35);
  text-stroke: 2px rgba(201,162,39,.35);
  letter-spacing: .02em;
  /* Decorative ghost layer — slightly offset for depth */
  margin-bottom: -.55em;
  position: relative;
  top: .05em;
  user-select: none;
}

.nw-hero__title-solid {
  display: block;
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  color: var(--nw-gold);
  position: relative;
}

.nw-hero__subtitle {
  font-family: var(--nw-font-display);
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--nw-orange);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nw-hero__desc {
  font-size: clamp(.875rem, 2vw, 1rem);
  color: var(--nw-text-inv-soft);
  line-height: 1.65;
  max-width: 460px;
}

.nw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .5rem;
}

/* Hero artwork — CSS-only pirate motif: stacked card / treasure chest shapes */
.nw-hero__art {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 260px;
}

/* Abstract CSS card stack motif */
.nw-hero__art-stack {
  position: relative;
  width: 200px;
  height: 270px;
  flex-shrink: 0;
}

.nw-hero__art-stack .art-card {
  position: absolute;
  border-radius: 14px;
  border: 2px solid rgba(201,162,39,.55);
}

.nw-hero__art-stack .art-card:nth-child(1) {
  width: 160px;
  height: 220px;
  bottom: 0;
  right: 0;
  background: linear-gradient(145deg, #2a1d0e 0%, #1a1008 100%);
  transform: rotate(-8deg) translateX(12px);
}

.nw-hero__art-stack .art-card:nth-child(2) {
  width: 160px;
  height: 220px;
  bottom: 0;
  right: 0;
  background: linear-gradient(145deg, #321f0f 0%, #221408 100%);
  transform: rotate(-3deg) translateX(4px);
}

.nw-hero__art-stack .art-card:nth-child(3) {
  width: 162px;
  height: 222px;
  bottom: 0;
  right: 0;
  background: linear-gradient(160deg, #3a2512 0%, #2a1a0c 60%, #1e1209 100%);
  border-color: var(--nw-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
}

/* Card face inner decoration */
.art-card__inner {
  width: 90%;
  height: 90%;
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: .75rem;
}

.art-card__pip {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.25) 0%, transparent 70%);
  border: 2px solid rgba(201,162,39,.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-card__pip svg {
  width: 34px;
  height: 34px;
  color: var(--nw-gold);
  opacity: .7;
}

.art-card__label {
  font-family: var(--nw-font-display);
  font-size: .45rem;
  letter-spacing: .14em;
  color: var(--nw-gold);
  text-transform: uppercase;
  text-align: center;
  opacity: .8;
}

.art-card__stripes {
  width: 100%;
  height: 28px;
  background: repeating-linear-gradient(
    90deg,
    rgba(201,162,39,.18) 0px,
    rgba(201,162,39,.18) 4px,
    transparent 4px,
    transparent 10px
  );
  border-radius: 3px;
}

/* Glow behind the stack */
.nw-hero__art::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Skull motif floating top-left of art area */
.nw-hero__art-skull {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  color: var(--nw-gold);
  opacity: .18;
}

.nw-hero__art-skull svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 900px) {
  .nw-hero__inner {
    grid-template-columns: 1fr 1fr;
  }

  .nw-hero__art-stack {
    width: 280px;
    height: 380px;
  }

  .nw-hero__art-stack .art-card:nth-child(1),
  .nw-hero__art-stack .art-card:nth-child(2) {
    width: 220px;
    height: 300px;
  }

  .nw-hero__art-stack .art-card:nth-child(3) {
    width: 222px;
    height: 302px;
  }
}

/* --------------------------------------------------------------------------
   17. Homepage — Trust bar (.nw-trustbar)
   -------------------------------------------------------------------------- */
.nw-trustbar {
  background: var(--nw-paper);
  border-top: 1px solid var(--nw-line-light);
  border-bottom: 1px solid var(--nw-line-light);
  padding-block: 1.5rem;
}

.nw-trustbar__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.nw-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nw-trust-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--nw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--nw-gold);
}

.nw-trust-item__icon svg {
  width: 22px;
  height: 22px;
}

.nw-trust-item__label {
  font-family: var(--nw-font-body);
  font-size: .85rem;
  font-weight: 700;
  color: var(--nw-ink);
  display: block;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nw-trust-item__sub {
  font-size: .75rem;
  color: var(--nw-text-soft);
}

@media (min-width: 600px) {
  .nw-trustbar__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 3rem;
  }
}

@media (min-width: 900px) {
  .nw-trustbar__inner {
    justify-content: space-around;
  }
}

/* --------------------------------------------------------------------------
   18. Homepage — Categories (.nw-categories)
   -------------------------------------------------------------------------- */
.nw-categories {
  background: var(--nw-paper);
  padding-block: clamp(2rem, 6vw, 3.5rem);
}

.nw-categories__heading {
  text-align: center;
  margin-bottom: .5rem;
}

.nw-categories__divider {
  justify-content: center;
  margin-bottom: 2rem;
}

/* Horizontal scroll container on mobile */
.nw-cat-scroller {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .75rem;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nw-cat-scroller::-webkit-scrollbar {
  display: none;
}

.nw-cat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
  scroll-snap-align: start;
  min-width: 90px;
}

.nw-cat-circle__ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--nw-gold);
  background: var(--nw-cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 2px 10px rgba(201,162,39,.15);
}

.nw-cat-circle:hover .nw-cat-circle__ring,
.nw-cat-circle:focus-visible .nw-cat-circle__ring {
  border-color: var(--nw-gold-2);
  box-shadow: 0 4px 20px rgba(201,162,39,.35);
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .nw-cat-circle:hover .nw-cat-circle__ring {
    transform: none;
  }
}

.nw-cat-circle__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--nw-cream) 0%, var(--nw-cream-2) 100%);
}

.nw-cat-circle__icon {
  width: 42px;
  height: 42px;
  color: var(--nw-gold-deep);
}

.nw-cat-circle__icon svg {
  width: 100%;
  height: 100%;
}

.nw-cat-circle__label {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nw-text);
  text-align: center;
  max-width: 90px;
  line-height: 1.3;
}

@media (min-width: 600px) {
  .nw-cat-scroller {
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: center;
    gap: 2rem 2.5rem;        /* row-gap col-gap — roomier than the mobile 1.25rem */
  }
}

@media (min-width: 900px) {
  .nw-cat-scroller {
    gap: 2.25rem 3.5rem;     /* more breathing room between circles on desktop */
  }

  .nw-cat-circle__ring {
    width: 100px;
    height: 100px;
  }

  .nw-cat-circle {
    min-width: 100px;
  }
}

/* --------------------------------------------------------------------------
   19. Homepage — Featured products (.nw-featured)
   -------------------------------------------------------------------------- */
.nw-featured {
  background:
    radial-gradient(ellipse 120% 50% at 50% 0%, rgba(42,31,23,.8) 0%, transparent 55%),
    var(--nw-bg);
  padding-block: clamp(2rem, 6vw, 4rem);
}

.nw-featured__heading-wrap {
  text-align: center;
  margin-bottom: .5rem;
}

.nw-featured__divider {
  justify-content: center;
  margin-bottom: 2rem;
}

.nw-featured__eyebrow {
  color: var(--nw-gold);
  margin-bottom: .25rem;
}

.nw-featured__title {
  color: var(--nw-gold);
}

/* WooCommerce shortcode output wrapper overrides — homogenises the grid */
.nw-featured .woocommerce,
.nw-featured .woocommerce-page {
  width: 100%;
}

.nw-featured ul.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 900px) {
  .nw-featured ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   20. Homepage — CTA band (.nw-cta)
   -------------------------------------------------------------------------- */
.nw-cta {
  background:
    radial-gradient(ellipse 80% 120% at 50% 50%, rgba(160,30,30,.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201,162,39,.1) 0%, transparent 55%),
    var(--nw-bg-2);
  padding-block: clamp(3rem, 8vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative cross-hatch lines */
.nw-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(201,162,39,.03) 30px,
    rgba(201,162,39,.03) 31px
  );
  pointer-events: none;
}

.nw-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.nw-cta__eyebrow {
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--nw-gold-2);
  text-transform: uppercase;
  font-weight: 600;
}

.nw-cta__heading {
  font-size: clamp(1.5rem, 5vw, 2.75rem);
  color: var(--nw-gold);
  max-width: 560px;
}

.nw-cta__sub {
  font-size: .9rem;
  color: var(--nw-text-inv-soft);
  max-width: 420px;
}

/* --------------------------------------------------------------------------
   21. Generic page template (.nw-page-content)
   -------------------------------------------------------------------------- */
.nw-page-content {
  background: var(--nw-paper);
  padding-block: clamp(2rem, 6vw, 4rem);
}

.nw-page-content .entry-title {
  font-family: var(--nw-font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--nw-ink);
  margin-bottom: 1.5rem;
}

.nw-page-content .entry-content > * + * {
  margin-top: 1em;
}

.nw-page-content .entry-content h2,
.nw-page-content .entry-content h3 {
  font-family: var(--nw-font-display);
  color: var(--nw-gold-deep);
  margin-top: 1.5em;
}

.nw-page-content .entry-content a {
  color: var(--nw-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nw-page-content .entry-content ul,
.nw-page-content .entry-content ol {
  padding-left: 1.5em;
  list-style: revert;
}

.nw-page-content .entry-content img {
  border-radius: var(--nw-radius);
}

/* --------------------------------------------------------------------------
   22. Blog / archive (index.php)
   -------------------------------------------------------------------------- */
.nw-archive {
  background: var(--nw-paper);
  padding-block: clamp(2rem, 6vw, 4rem);
}

.nw-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 600px) {
  .nw-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .nw-archive__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nw-archive__card {
  background: var(--nw-cream);
  border: 1px solid var(--nw-line-light);
  border-radius: var(--nw-radius-lg);
  overflow: hidden;
  box-shadow: var(--nw-shadow-card);
  transition: box-shadow .2s, transform .2s;
}

.nw-archive__card:hover {
  box-shadow: 0 8px 28px rgba(28,20,16,.15);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .nw-archive__card:hover {
    transform: none;
  }
}

.nw-archive__card-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--nw-cream-2);
}

.nw-archive__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nw-archive__card-body {
  padding: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.nw-archive__card-cat {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nw-red);
}

.nw-archive__card-title {
  font-family: var(--nw-font-display);
  font-size: 1rem;
  color: var(--nw-ink);
  line-height: 1.3;
}

.nw-archive__card-title a {
  color: inherit;
  text-decoration: none;
}

.nw-archive__card-title a:hover {
  color: var(--nw-gold-deep);
}

.nw-archive__card-excerpt {
  font-size: .8rem;
  color: var(--nw-text-soft);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nw-archive__card-date {
  font-size: .7rem;
  color: var(--nw-text-soft);
}

.nw-archive__no-posts {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--nw-text-soft);
  font-size: 1rem;
}

.nw-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .35rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.nw-pagination a,
.nw-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  border: 1.5px solid var(--nw-line-light);
  color: var(--nw-text);
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}

.nw-pagination a:hover {
  border-color: var(--nw-gold);
  color: var(--nw-gold-deep);
  background: rgba(201,162,39,.06);
}

.nw-pagination .current {
  background: var(--nw-gold);
  color: var(--nw-ink);
  border-color: var(--nw-gold);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   23. Skip link (accessibility)
   -------------------------------------------------------------------------- */
.nw-skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--nw-ink);
  color: var(--nw-cream);
  padding: .75em 1.25em;
  border-radius: 0 0 var(--nw-radius) var(--nw-radius);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: top .15s;
}

.nw-skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   24. Screen reader only utility
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* --------------------------------------------------------------------------
   25. Dark-surface text utility (for sections on --nw-bg)
   -------------------------------------------------------------------------- */
.nw-on-dark {
  color: var(--nw-text-inv);
}

.nw-on-dark .nw-heading {
  color: var(--nw-gold);
}

/* --------------------------------------------------------------------------
   26. WordPress alignment helpers (editor output)
   -------------------------------------------------------------------------- */
.alignleft  { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin-inline: auto; }

/* --------------------------------------------------------------------------
   27. WooCommerce placeholder / notice styling (minimal, WC agent extends)
   -------------------------------------------------------------------------- */
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  padding: .875rem 1.25rem;
  border-radius: var(--nw-radius);
  font-size: .875rem;
  margin-bottom: 1.25rem;
  list-style: none;
}

.woocommerce-info {
  background: rgba(201,162,39,.1);
  border-left: 4px solid var(--nw-gold);
  color: var(--nw-text);
}

.woocommerce-message {
  background: rgba(34,120,60,.1);
  border-left: 4px solid #2a7c44;
  color: var(--nw-text);
}

.woocommerce-error {
  background: rgba(160,30,30,.08);
  border-left: 4px solid var(--nw-red);
  color: var(--nw-text);
}
