/* ═══════════════════════════════════════════════════════════
   LAYOUT SHELL — Header / Footer / Marquee
   Nuggela & Sulé Design Preview
   ═══════════════════════════════════════════════════════════ */

/* ── Global body background for design preview ──────────── */
body.ns-design-v1 {
  background: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── Reset .main from parent ────────────────────────────── */
body.ns-design-v1 .ns-main,
body.ns-design-v1 main.ns-main {
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible;
  display: block;
  background: #fff;
  min-height: 0 !important;
}

/* ── Hide ANY default elements that might be inserted between header and main content ── */
body.ns-design-v1 .ns-main > .container,
body.ns-design-v1 .ns-main > .wrapper,
body.ns-design-v1 .ns-main > .archive-product,
body.ns-design-v1 .ns-main > .section-standard:empty,
body.ns-design-v1 .ns-main > .archive-product__sidebar {
  display: none !important;
}

/* Force first real section to start at the top.
   Parent theme global.css has: main section:first-child { margin-top: 112px }
   We override it here for the design preview. */
body.ns-design-v1 main section:first-child,
body.ns-design-v1 .ns-main section:first-child,
body.ns-design-v1 .ns-main > section:first-of-type,
body.ns-design-v1 .ns-main > .ns-shop-hero,
body.ns-design-v1 .ns-fp-hero {
  margin-top: 0 !important;
}
/* Kill parent theme's nav/topbar/announcement bar entirely.
   These rules are scoped by selector (no body.ns-design-v1 prefix) because our
   CSS is only enqueued when the preview theme is active. */
#header-nav,
header#header-nav,
.navigation:not(.ns-navigation),
#top-bar,
.top-bar__carousel,
.top-bar__carousel__row,
.top-bar__carousel__row-mobile,
.header__login-backdrop,
.header__login-modal,
.mobile-menu__off-canvas,
.mobile-menu__off-canvas--backdrop,
#prefooter,
.section-standard.section-archive-products,
.archive-product,
.archive-product__sidebar,
.product-arch-filter-backdrop,
.archive-product__filter-main,
.archive-product__filter-box,
.archive-product__top,
.archive-product__products,
.archive-product__pagination,
.section-standard:empty {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* ═══ USP MARQUEE ════════════════════════════════════════ */
.ns-marquee {
  background: var(--ink);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.ns-marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ns-marquee-scroll 42s linear infinite;
  will-change: transform;
}

.ns-marquee__chunk {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
}

.ns-marquee__item {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes ns-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ═══ DESKTOP HEADER ═══════════════════════════════════════ */
.ns-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line, rgba(0,0,0,.1));
}

/* When WP admin bar is visible */
body.admin-bar .ns-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .ns-header {
    top: 46px;
  }
}

.ns-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: 24px;
}

/* ── Logo (center) ─────────────────────────────────────── */
.ns-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-self: center;
  flex-shrink: 0;
}
.ns-header__logo img {
  max-height: 40px;
  width: auto;
  display: block;
}
.ns-header__wordmark-text {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -.03em;
  color: var(--ink);
  white-space: nowrap;
}

/* ── Left nav ──────────────────────────────────────────── */
.ns-header__nav {
  display: flex;
  align-items: center;
}
.ns-header__nav--left {
  justify-content: flex-start;
}
.ns-header__nav--right {
  justify-content: flex-end;
  gap: 16px;
}

.ns-header__menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(14px, 1.8vw, 26px);
}
.ns-header__menu li {
  list-style: none;
}
.ns-header__menu li,
.ns-header__item {
  position: relative;
}
.ns-header__menu a,
.ns-header__link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .01em;
  padding: 14px 2px;
  display: inline-flex;
  align-items: center;
  transition: color .15s;
  white-space: nowrap;
  position: relative;
  overflow: visible;
}
.ns-header__menu a:hover,
.ns-header__menu .current-menu-item > a,
.ns-header__menu .current-menu-ancestor > a,
.ns-header__link:hover {
  color: var(--orange-deep, #B84F1C);
}
.ns-header__menu a::after,
.ns-header__link::after {
  content: "&";
  position: absolute;
  left: 50%;
  bottom: 3px;
  z-index: 0;
  font-family: var(--display, 'Fraunces', serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  color: var(--orange, #E86D31);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
.ns-header__menu a:hover::after,
.ns-header__menu a:focus-visible::after,
.ns-header__menu .current-menu-item > a::after,
.ns-header__menu .current-menu-ancestor > a::after,
.ns-header__link:hover::after,
.ns-header__link:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ── Quiz pill ─────────────────────────────────────────── */
.ns-header__quiz {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange-tint, #FEF0E8);
  color: var(--orange-deep, #B84F1C);
  border: 1px solid var(--orange-soft, rgba(184,79,28,.25));
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0;
}
.ns-header__quiz:hover {
  background: var(--orange-soft, rgba(184,79,28,.15));
}
.ns-header__quiz svg {
  color: var(--orange-deep, #B84F1C);
}

/* ── Icon buttons ──────────────────────────────────────── */
.ns-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.ns-header__iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: background .12s;
  position: relative;
}
.ns-header__iconbtn:hover {
  background: var(--paper-2, #F5F5F0);
}
.ns-header__cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--orange, #E86D31);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
}

/* ═══ Search bar drop-down — sticky, works on both desktop & mobile ═══ */
.ns-header__search-bar {
  position: sticky;
  top: calc(32px + 73px);
  z-index: 99;
  border-top: 1px solid var(--line, rgba(0,0,0,.08));
  border-bottom: 1px solid var(--line, rgba(0,0,0,.08));
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s cubic-bezier(.4,0,.2,1);
}
.ns-header__search-bar:not(.is-open) { border-bottom-width: 0; }
html:not(.admin-bar) body .ns-header__search-bar,
body:not(.admin-bar) .ns-header__search-bar {
  top: 73px;
}
@media (max-width: 1023px) {
  .ns-header__search-bar { top: calc(32px + 56px + 36px); }
  body:not(.admin-bar) .ns-header__search-bar { top: calc(56px + 36px); }
}
@media (max-width: 600px) {
  body.admin-bar .ns-header__search-bar { top: calc(46px + 56px + 36px); }
}
.ns-header__search-bar.is-open {
  /* 64px = compact input strip; overflow visible so AJAX results show below */
  max-height: 64px;
  overflow: visible;
}

.ns-header__search-bar-inner {
  display: flex;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
  gap: 0;
  position: relative;
}

.ns-header__search-bar-inner .is-search-form,
.ns-header__search-bar-inner form[role="search"],
.ns-header__search-bar-inner form.is-form-style {
  flex: 1;
  position: relative;
  display: flex;
  align-items: stretch;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ns-header__search-bar-inner label {
  flex: 1;
  display: flex !important;
  align-items: stretch;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Override Ivory Search input styles (which use !important) */
.ns-header__search-bar-inner .search-field,
.ns-header__search-bar-inner input[type="search"],
.ns-header__search-bar-inner input[type="text"],
.ns-header__search-bar-inner input.is-search-input {
  flex: 1 !important;
  width: 100% !important;
  height: 64px !important;
  min-height: 64px !important;
  padding: 0 16px !important;
  margin: 0 !important;
  font-size: 26px !important;
  font-family: var(--sans) !important;
  font-weight: 400 !important;
  color: #000 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  text-align: center;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1 !important;
}
.ns-header__search-bar-inner .search-field::placeholder,
.ns-header__search-bar-inner input.is-search-input::placeholder {
  color: #999;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
}
.ns-header__search-bar-inner input[type="search"]::-webkit-search-cancel-button { display:none; }

/* Hide every variant of magnifier/submit Ivory may render */
.ns-header__search-bar-inner .search-submit,
.ns-header__search-bar-inner button[type="submit"],
.ns-header__search-bar-inner input[type="submit"],
.ns-header__search-bar-inner .is-search-submit,
.ns-header__search-bar-inner .is-search-icon {
  display: none !important;
}

.ns-header__search-bar-inner::after { display: none; }

.ns-header__search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink, #1a1a1a);
  width: 48px;
  height: 64px;
  flex-shrink: 0;
  transition: color .12s;
  padding: 0;
}
.ns-header__search-close:hover { color: var(--orange, #E86D31); }

/* ═══ AJAX results dropdown — clean cart-style card ══════════════════ */
/* Ivory appends .is-ajax-search-result to <body> with inline top/left/width;
   we override left/width with !important so the dropdown spans the full
   nav width (1320px) centered, and the inner rows are flush flat list.   */
.is-ajax-search-result {
  background: #fff !important;
  color: var(--ink, #1a1a1a) !important;
  padding: 0 !important;
  border: 1px solid var(--line, rgba(0,0,0,.06)) !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  margin-top: 12px !important;
  z-index: 1001;
  overflow: hidden !important;

  /* Force nav-inner width centered, ignoring Ivory's inline left/width.
     left/right == max(side padding, half of overflow beyond 1320px)        */
  left: max(clamp(16px, 3vw, 40px), calc((100vw - 1320px) / 2)) !important;
  right: max(clamp(16px, 3vw, 40px), calc((100vw - 1320px) / 2)) !important;
  width: auto !important;
  max-width: none !important;
  transform: none !important;
  box-sizing: border-box !important;
}

.is-ajax-search-result .is-ajax-search-items {
  max-height: 70vh;
  overflow-y: auto;
  border-radius: 0;
}

/* Single result row — flat list, separators only between rows */
.is-ajax-search-result .is-ajax-search-post {
  background: #fff !important;
  padding: 12px 20px !important;
  border-bottom: 1px solid var(--line, rgba(0,0,0,.06)) !important;
  border-radius: 0 !important;
  transition: background .12s;
}
.is-ajax-search-result .is-ajax-search-post:last-child { border-bottom: 0 !important; }
.is-ajax-search-result .is-ajax-search-post:hover {
  background: var(--paper, #FBF7F1) !important;
}

.is-ajax-search-result .is-search-sections {
  display: flex !important;
  align-items: center;
  gap: 14px;
}

/* Left section wraps the thumbnail card */
.is-ajax-search-result .is-search-sections .left-section {
  flex-shrink: 0;
}

/* Thumbnail — framed card on darker beige (cart-style) */
.is-ajax-search-result .is-search-sections .thumbnail {
  width: 56px !important;
  height: 56px !important;
  margin: 0 !important;
  background: var(--paper-3, #EDE3D3) !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 5px !important;
  box-sizing: border-box !important;
  overflow: hidden;
}
.is-ajax-search-result .is-search-sections .thumbnail a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  text-decoration: none !important;
}
.is-ajax-search-result .is-search-sections .thumbnail img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
  display: block !important;
  float: none !important;
  mix-blend-mode: multiply;
}

/* Right section: title + meta + description in a column */
.is-ajax-search-result .right-section {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

/* Title */
.is-ajax-search-result .is-title,
.is-ajax-search-result .is-title a,
.is-ajax-search-result .post-title {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--ink, #1a1a1a) !important;
  font-family: var(--sans) !important;
  text-transform: none !important;
  text-decoration: none !important;
  line-height: 1.3 !important;
  display: block !important;
}
.is-ajax-search-result .is-title a:hover { text-decoration: none !important; }

/* Meta row (price/sku) — inline */
.is-ajax-search-result .meta {
  margin: 0 !important;
}
.is-ajax-search-result .meta > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
}
.is-ajax-search-result .meta .price,
.is-ajax-search-result .price,
.is-ajax-search-result .is-prices {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--ink, #1a1a1a) !important;
}
.is-ajax-search-result .price del,
.is-ajax-search-result .is-prices del { opacity: .55; font-weight: 400; }
.is-ajax-search-result .price ins,
.is-ajax-search-result .is-prices ins { text-decoration: none; }

/* Description — single line, muted, smaller, FLUSH LEFT */
.is-ajax-search-result .is-search-content,
.is-ajax-search-result .is-ajax-result-description,
.is-ajax-search-result .is-search-content * {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: var(--muted, #888) !important;
  margin: 0 !important;
  padding: 0 !important;
  text-indent: 0 !important;
  text-align: left !important;
  line-height: 1.4 !important;
}
.is-ajax-search-result .is-search-content,
.is-ajax-search-result .is-ajax-result-description {
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* Hide noise we don't want in compact rows */
.is-ajax-search-result .is-ajax-search-tags,
.is-ajax-search-result .is-ajax-search-categories,
.is-ajax-search-result .is-ajax-search-post .meta .stock-status,
.is-ajax-search-result .is-ajax-search-post .meta .sku_wrapper {
  display: none !important;
}

/* Highlighted matched text — subtle, no badge look */
.is-ajax-search-result mark,
.is-ajax-search-result strong,
.is-ajax-search-result .is-highlight {
  background: transparent !important;
  color: var(--orange-deep, #B84F1C) !important;
  padding: 0 !important;
  font-weight: 700 !important;
  border-radius: 0 !important;
}

/* Show more results footer */
.is-ajax-search-result .is-show-more-results {
  background: #fff !important;
  border-top: 1px solid var(--line, rgba(0,0,0,.08)) !important;
  margin: 0 !important;
}
.is-ajax-search-result .is-show-more-results-text {
  padding: 14px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--orange-deep, #B84F1C) !important;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.is-ajax-search-result .is-show-more-results:hover {
  background: var(--paper-2, #F7F3ED) !important;
}

/* No-result message */
.is-ajax-search-result .is-ajax-search-no-result {
  padding: 20px !important;
  text-align: center;
  font-size: 14px !important;
  color: var(--muted, #777) !important;
  background: #fff !important;
}

/* Hide the side details box — we only want the compact list */
.is-ajax-search-details { display: none !important; }

/* ═══ MOBILE HEADER ════════════════════════════════════════ */
.ns-header-mobile {
  display: none;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line, rgba(0,0,0,.1));
}
body.admin-bar .ns-header-mobile {
  top: 46px;
}
@media screen and (max-width: 600px) {
  body.admin-bar .ns-header-mobile {
    top: 46px;
  }
}

.ns-header-mobile__inner {
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  height: 56px;
  padding: 0 8px;
}
.ns-header-mobile__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.ns-header-mobile__logo img {
  max-height: 28px;
  width: auto;
}
.ns-header-mobile__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}
.ns-header-mobile__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.ns-header-mobile__quiz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 36px;
  background: var(--orange-tint, #FEF0E8);
  border-top: 1px solid var(--orange-soft, rgba(184,79,28,.25));
  color: var(--orange-deep, #B84F1C);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
}

/* ── Breakpoints ───────────────────────────────────────── */
@media (max-width: 1023px) {
  .ns-header {
    display: none;
  }
  .ns-header-mobile {
    display: block;
  }
}
@media (min-width: 1024px) {
  .ns-header-mobile {
    display: none;
  }
}

/* ═══ MOBILE DRAWER ════════════════════════════════════════ */
.ns-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s;
}
.ns-mobile-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.ns-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 201;
  width: min(446px, calc(100vw - 34px));
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 30px rgba(0,0,0,.18);
  transform: translateX(-100%);
  transition: transform .26s cubic-bezier(.4,0,.2,1);
}
.ns-mobile-drawer.is-open {
  transform: translateX(0);
}

.ns-mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line, rgba(0,0,0,.1));
  flex-shrink: 0;
}
.ns-mobile-drawer__logo {
  text-decoration: none;
}
.ns-mobile-drawer__logo img {
  max-height: 39px;
}
.ns-mobile-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: 8px;
}
.ns-mobile-drawer__close:hover {
  background: var(--paper-2);
}

.ns-mobile-drawer__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px 20px 16px;
}

.ns-mobile-drawer__quiz-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 80px;
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--ink, #120f0b);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(0,0,0,.12);
}
.ns-mobile-drawer__quiz-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--orange, #e86d31);
  color: #fff;
  flex: 0 0 44px;
}
.ns-mobile-drawer__quiz-mark svg {
  width: 18px !important;
  height: 19px !important;
  color: #fff !important;
}
.ns-mobile-drawer__quiz-copy {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 3px;
}
.ns-mobile-drawer__quiz-copy strong {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 700;
}
.ns-mobile-drawer__quiz-copy small {
  font-size: 12px;
  line-height: 1.25;
  color: rgba(255,255,255,.68);
}
.ns-mobile-drawer__quiz-arrow {
  font-size: 24px;
  line-height: 1;
  color: rgba(255,255,255,.9);
}

.ns-mobile-drawer__accordion {
  border-top: 1px solid var(--line, rgba(0,0,0,.1));
}
.ns-mobile-drawer__section {
  border-bottom: 1px solid var(--line, rgba(0,0,0,.1));
}
.ns-mobile-drawer__section-btn {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.ns-mobile-drawer__section-btn strong {
  display: block;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -.02em;
}
.ns-mobile-drawer__section-btn small {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.2;
  color: var(--muted);
}
.ns-mobile-drawer__section-btn svg {
  color: var(--muted);
  transition: transform .16s ease;
}
.ns-mobile-drawer__section.is-open .ns-mobile-drawer__section-btn svg {
  transform: rotate(180deg);
}
.ns-mobile-drawer__section-panel {
  padding: 0 0 14px;
}
.ns-mobile-drawer__sublist {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
  display: grid;
  gap: 8px;
}
.ns-mobile-drawer__sublist a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--paper-2, #f5efe5);
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.ns-mobile-drawer__all-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  color: var(--orange-deep, #b84f1c);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
}

.ns-mobile-drawer__promo {
  position: relative;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 16px;
  min-height: 154px;
  margin: 24px 0 0;
  padding: 18px;
  border-radius: 15px;
  overflow: hidden;
  background: var(--ink, #120f0b);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 20px 38px rgba(0,0,0,.16);
}
.ns-mobile-drawer__promo-pattern {
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'><g fill='none' stroke='%23C49A4A' stroke-width='1.4' stroke-linecap='round'><path d='M0 22 Q11 0 22 22 Q33 44 44 22'/><path d='M0 22 Q11 44 22 22 Q33 0 44 22'/><path d='M22 0 Q44 11 22 22 Q0 33 22 44'/><path d='M22 0 Q0 11 22 22 Q44 33 22 44'/></g></svg>");
  background-size: 44px 44px;
}
.ns-mobile-drawer__promo-img,
.ns-mobile-drawer__promo-copy {
  position: relative;
  z-index: 1;
}
.ns-mobile-drawer__promo-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  overflow: hidden;
}
.ns-mobile-drawer__promo-img img {
  display: block;
  width: auto;
  max-width: 82%;
  max-height: 112px;
  object-fit: contain;
}
.ns-mobile-drawer__promo-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ns-mobile-drawer__promo-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ns-mobile-drawer__promo-badge {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 5px;
  background: var(--orange, #e86d31);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .04em;
}
.ns-mobile-drawer__promo-eyebrow {
  color: var(--orange-2, #f4a261);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ns-mobile-drawer__promo-title {
  display: block;
  font-family: var(--display, serif);
  font-size: 21px;
  line-height: 1.08;
  font-weight: 500;
}
.ns-mobile-drawer__promo-title em {
  color: var(--orange-2, #f4a261);
  font-style: italic;
}
.ns-mobile-drawer__promo-desc {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.35;
}
.ns-mobile-drawer__promo-price {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
}
.ns-mobile-drawer__promo-price del {
  color: rgba(255,255,255,.45);
  font-size: 12px;
}
.ns-mobile-drawer__promo-price b {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.ns-mobile-drawer__promo-price span {
  margin-left: auto;
  color: var(--orange-2, #f4a261);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.ns-mobile-drawer__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px 20px;
  border-top: 1px solid var(--line, rgba(0,0,0,.1));
  background: var(--paper, #fbf7f1);
  flex-shrink: 0;
}
.ns-mobile-drawer__foot-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--line, rgba(0,0,0,.1));
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}
.ns-mobile-drawer__foot-link svg {
  flex: 0 0 auto;
}

@media (max-width: 390px) {
  .ns-mobile-drawer__scroll {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ns-mobile-drawer__promo {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }
  .ns-mobile-drawer__promo-title {
    font-size: 19px;
  }
}

/* ═══ NS FOOTER ════════════════════════════════════════════ */
.ns-footer {
  /* Ten sam ciemny kolor co sekcja newslettera */
  background: #0E0B08;
  color: rgba(255,255,255,.85);
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

/* Trellis pattern — widoczny na dole stopki, zanika płynnie ku górze */
.ns-footer__trellis {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'><g fill='none' stroke='%23C49A4A' stroke-width='1.4' stroke-linecap='round'><path d='M0 22 Q11 0 22 22 Q33 44 44 22'/><path d='M0 22 Q11 44 22 22 Q33 0 44 22'/><path d='M22 0 Q44 11 22 22 Q0 33 22 44'/><path d='M22 0 Q0 11 22 22 Q44 33 22 44'/></g></svg>");
  background-size: 44px 44px;
  /* +30% widoczności (0.035 → 0.046) */
  opacity: 0.046;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 50%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 50%, black 100%);
  z-index: 0;
}

.ns-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(16px, 3vw, 32px) clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .ns-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .ns-footer__inner {
    grid-template-columns: 1fr;
  }
}

/* Brand column */
.ns-footer__brand {}
.ns-footer__logo {
  text-decoration: none;
  display: inline-block;
}
.ns-footer__logo img {
  max-height: 32px;
  width: auto;
}
.ns-footer__brand-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 280px;
}
.ns-footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}
.ns-footer__pay-icon {
  height: 24px;
  width: auto;
  display: block;
  /* SVG ikony są pełnokolorowe (oryginalne brandy) — żadnych filtrów. */
}
.ns-footer__pay-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  color: rgba(255,255,255,.7);
  display: inline-block;
}
.ns-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.ns-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: background .15s;
}
.ns-footer__social-link:hover {
  background: rgba(255,255,255,.16);
}

/* Link columns */
.ns-footer__col {}
.ns-footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.ns-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ns-footer__list li {}
.ns-footer__list a {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .12s;
}
.ns-footer__list a:hover {
  color: #fff;
}

/* Bottom bar */
.ns-footer__bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px clamp(16px, 3vw, 32px);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255,255,255,.45);
}
.ns-footer__terms {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ns-footer__terms li {}
.ns-footer__terms a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: 11px;
}
.ns-footer__terms a:hover {
  color: rgba(255,255,255,.8);
}
.ns-footer__bottom-links ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ns-footer__bottom-links ul li a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: 11px;
}
.ns-footer__bottom-links ul li a:hover {
  color: rgba(255,255,255,.8);
}
