/** Shopify CDN: Minification failed

Line 23:0 All "@import" rules must come first

**/
/* FIX: Prevent Shopify's global .shopify-section overflow:hidden from clipping the desktop dropdown */
.shopify-section.section-header {
  overflow: visible !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NOMAD'S ELIXIR â€” ULTRA PREMIUM HEADER OVERRIDE
   "Desert Silence" â€” Luxury Navigation System
   
   Design Philosophy:
   - Deep charcoal night-desert base: #0F0B08
   - Sunset Amber Gold accents: #C4955A
   - Plus Jakarta Sans â€” modern, precision letterforms
   - Maximum negative space, minimum clutter
   - Cinematic scroll transitions
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* â”€â”€ CSS Custom Properties â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Desert Bloom â€” Warm Espresso header (not coal black) */
  --ne-hdr-bg:         #2C1F14;
  --ne-hdr-bg-scroll:  rgba(44, 31, 20, 0.97);
  --ne-hdr-gold:       #B8845A;
  --ne-hdr-gold-light: #D4A978;
  --ne-hdr-cream:      #F2E8DC;
  --ne-hdr-muted:      rgba(242, 232, 220, 0.55);
  --ne-hdr-border:     rgba(184, 132, 90, 0.22);
  --ne-hdr-height:     72px;
  --ne-hdr-font:       'Plus Jakarta Sans', system-ui, sans-serif;
  --ne-hdr-transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* â”€â”€ Announcement Ticker Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ne-ticker-bar {
  background: var(--ne-hdr-bg);
  border-bottom: 1px solid var(--ne-hdr-border);
  padding: 0;
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
}

.ne-ticker-bar::before,
.ne-ticker-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ne-ticker-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--ne-hdr-bg), transparent);
}
.ne-ticker-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--ne-hdr-bg), transparent);
}

.ne-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ne-ticker-scroll 40s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.ne-ticker-track:hover { animation-play-state: paused; }

@keyframes ne-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ne-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 32px;
  font-family: var(--ne-hdr-font);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ne-hdr-gold);
  flex-shrink: 0;
}

.ne-ticker-separator {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ne-hdr-gold-light);
  opacity: 0.6;
  flex-shrink: 0;
}

/* â”€â”€ Main Header Shell â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ne-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Create isolated stacking context so dropdown z-index works correctly */
  isolation: isolate;
  background: var(--ne-hdr-bg);
  border-bottom: 1px solid var(--ne-hdr-border);
  height: var(--ne-hdr-height);
  display: flex;
  align-items: center;
  transition: background var(--ne-hdr-transition),
              border-color var(--ne-hdr-transition),
              box-shadow var(--ne-hdr-transition);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.ne-header.is-scrolled {
  background: var(--ne-hdr-bg-scroll);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--ne-hdr-border),
              0 8px 32px rgba(0, 0, 0, 0.35);
}

.ne-header.ne-header--transparent {
  background: transparent;
  border-bottom-color: rgba(196, 149, 90, 0.08);
}

/* â”€â”€ Header Inner Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ne-header__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

/* â”€â”€ Logo â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ne-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 14px;
  transition: opacity 0.3s ease;
}

.ne-header__logo:hover { opacity: 0.8; }

.ne-header__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.ne-header__logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ne-header__logo-name {
  font-family: var(--ne-hdr-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ne-hdr-cream);
  line-height: 1;
}

.ne-header__logo-sub {
  font-family: var(--ne-hdr-font);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ne-hdr-gold);
  line-height: 1;
}

/* Logo mark (SVG icon when no image) */
.ne-header__logo-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.ne-header__logo-mark svg {
  display: block;
}

.ne-header__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* â”€â”€ Navigation â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ne-header__nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ne-header__nav-item {
  position: relative;
}

.ne-header__nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  height: var(--ne-hdr-height);
  font-family: var(--ne-hdr-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ne-hdr-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.ne-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--ne-hdr-gold);
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ne-header__nav-link:hover,
.ne-header__nav-link.is-active {
  color: var(--ne-hdr-cream);
}

.ne-header__nav-link:hover::after,
.ne-header__nav-link.is-active::after {
  left: 20px;
  right: 20px;
}

/* Shop link with chevron */
.ne-header__nav-link .ne-nav-chevron {
  width: 10px;
  height: 10px;
  color: var(--ne-hdr-gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.ne-header__nav-item:hover .ne-nav-chevron {
  transform: rotate(180deg);
}

/* â”€â”€ Featured Nav Link (Scent Concierge) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ne-header__nav-link--featured {
  color: var(--ne-hdr-gold) !important;
  border: 1px solid var(--ne-hdr-border);
  border-radius: 2px;
  padding: 6px 16px !important;
  height: auto !important;
  margin-left: 8px;
  font-size: 10px !important;
}

.ne-header__nav-link--featured::after { display: none !important; }

.ne-header__nav-link--featured:hover {
  background: rgba(196, 149, 90, 0.08);
  border-color: var(--ne-hdr-gold);
  color: var(--ne-hdr-gold-light) !important;
}

/* â”€â”€ Mega Dropdown â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ne-header__dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #120E0A;
  border: 1px solid var(--ne-hdr-border);
  border-top: 2px solid var(--ne-hdr-gold);
  min-width: 240px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 24px 48px rgba(0,0,0,0.6);
  /* CRITICAL: Must be above hero images/sliders */
  z-index: 9999;
}

.ne-header__nav-item {
  position: relative;
  /* z-index stacking context for each item */
  z-index: 1;
}

.ne-header__nav-item:hover {
  z-index: 9998;
}

.ne-header__nav-item:hover .ne-header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.ne-header__dropdown-link {
  display: block;
  padding: 11px 24px;
  font-family: var(--ne-hdr-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ne-hdr-muted);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.ne-header__dropdown-link:hover {
  color: var(--ne-hdr-gold);
  padding-left: 32px;
}

.ne-header__dropdown-divider {
  height: 1px;
  background: var(--ne-hdr-border);
  margin: 8px 24px;
}

/* â”€â”€ Right Icons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ne-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.ne-header__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 2px;
  color: var(--ne-hdr-muted);
  transition: color 0.25s ease, background 0.25s ease;
  position: relative;
}

.ne-header__action-btn:hover {
  color: var(--ne-hdr-cream);
  background: rgba(240, 232, 220, 0.06);
}

.ne-header__action-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

/* Cart badge */
.ne-header__cart-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ne-hdr-gold);
  color: var(--ne-hdr-bg);
  font-family: var(--ne-hdr-font);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Vertical divider */
.ne-header__divider {
  width: 1px;
  height: 22px;
  background: var(--ne-hdr-border);
  margin: 0 8px;
  flex-shrink: 0;
}

/* â”€â”€ Mobile Hamburger â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ne-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 8px;
}

.ne-header__hamburger span {
  display: block;
  height: 1px;
  background: var(--ne-hdr-cream);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.ne-header__hamburger span:nth-child(1) { width: 24px; }
.ne-header__hamburger span:nth-child(2) { width: 16px; }
.ne-header__hamburger span:nth-child(3) { width: 20px; }

.ne-header__hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  width: 24px;
}
.ne-header__hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.ne-header__hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
  width: 24px;
}

/* â”€â”€ Mobile Drawer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ne-mobile-drawer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: #161311 !important;
  background-image: radial-gradient(circle at 50% 0%, rgba(184, 132, 90, 0.12) 0%, transparent 60%) !important;
  z-index: 999999 !important;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.ne-mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #161311;
  border-bottom: 1px solid rgba(184, 132, 90, 0.22);
  min-height: 60px;
  flex-shrink: 0;
}

.ne-mobile-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(184, 132, 90, 0.1);
  border: 1px solid rgba(184, 132, 90, 0.28);
  border-radius: 50%;
  color: #C4955A;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ne-mobile-drawer__close:hover {
  background: #C4955A;
  color: #161311;
  border-color: #C4955A;
}

.ne-mobile-drawer__hdr-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #F2E8DC;
  background: rgba(184, 132, 90, 0.1);
  border: 1px solid rgba(184, 132, 90, 0.28);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ne-mobile-drawer__hdr-btn:hover {
  color: #C4955A;
  border-color: #C4955A;
}

.ne-mobile-drawer__nav {
  padding: 12px 0;
  flex: 1;
}

.ne-mobile-drawer__item {
  border-bottom: 1px solid rgba(184, 132, 90, 0.1);
}

.ne-mobile-drawer__link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ne-mobile-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding: 16px 24px;
  font-family: var(--ne-hdr-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F2E8DC;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ne-mobile-drawer__link:hover { 
  color: #C4955A;
  padding-left: 30px;
}

.ne-mobile-drawer__link--featured {
  color: #C4955A !important;
}

.ne-mobile-drawer__toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 52px;
  background: transparent;
  border: none;
  color: #C4955A;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.is-expanded .ne-mobile-drawer__toggle-btn {
  transform: rotate(180deg);
}

.ne-mobile-drawer__subnav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  background: #110E0B;
  display: flex;
  flex-direction: column;
}

.is-expanded .ne-mobile-drawer__subnav {
  max-height: 600px;
  padding: 8px 0 14px 16px;
  border-top: 1px solid rgba(184, 132, 90, 0.12);
}

.ne-mobile-drawer__sublink {
  display: block;
  padding: 10px 20px;
  font-family: var(--ne-hdr-font);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #D9D2C9;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ne-mobile-drawer__sublink:hover {
  color: #C4955A;
  padding-left: 26px;
}

.ne-mobile-drawer__sublink--all {
  color: #C4955A !important;
  font-weight: 700 !important;
  font-size: 12.5px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  margin-top: 4px;
}

.ne-mobile-drawer__footer {
  padding: 22px 24px;
  background: #110E0B;
  border-top: 1px solid rgba(184, 132, 90, 0.2);
  flex-shrink: 0;
}

.ne-mobile-drawer__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ne-mobile-drawer__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ne-hdr-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 232, 220, 0.7);
}

.ne-mobile-drawer__trust-item svg {
  color: #C4955A;
  flex-shrink: 0;
}

/* â”€â”€ Mobile Drawer overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ne-mobile-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.8) !important;
  z-index: 999998 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ne-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* â”€â”€ Mobile Left Group â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ne-header__mobile-left {
  display: flex;
  align-items: center;
  gap: 2px;
}

.ne-header__action-btn--mobile-account {
  display: flex;
}

@media (min-width: 769px) {
  .ne-header__mobile-left {
    display: none !important;
  }
  .ne-header__action-btn--mobile-account {
    display: none !important;
  }
}

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) and (min-width: 769px) {
  .ne-header__inner {
    padding: 0 24px;
    grid-template-columns: auto 1fr auto;
  }
  .ne-header__nav { display: none; }
  .ne-header__hamburger { display: flex; }
}

@media (max-width: 768px) {
  :root { --ne-hdr-height: 64px; }

  .ne-header__inner {
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    grid-template-columns: none;
  }

  .ne-header__nav-wrapper {
    display: none;
  }

  /* Left mobile group: Hamburger + Account */
  .ne-header__mobile-left {
    display: flex;
    align-items: center;
    gap: 0px;
    flex: 1 1 0%;
    justify-content: flex-start;
  }

  .ne-header__hamburger {
    display: flex;
  }

  .ne-header__action-btn--mobile-account {
    display: flex;
  }

  /* Center Logo: Perfectly centered, zero overlap */
  .ne-header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    max-width: 170px;
    margin: 0 auto;
    text-align: center;
  }

  .ne-header__logo-img {
    height: 30px;
  }

  .ne-header__logo-mark svg {
    width: 26px;
    height: 26px;
  }

  .ne-header__logo-name {
    font-size: 11px;
    letter-spacing: 0.12em;
    line-height: 1.1;
  }

  .ne-header__logo-sub {
    font-size: 7px;
    letter-spacing: 0.18em;
  }

  /* Right actions: Search + Cart */
  .ne-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0px;
    flex: 1 1 0%;
  }

  .ne-header__action-btn--desktop-account,
  .ne-header__action-btn--desktop-wishlist,
  .ne-header__divider {
    display: none !important;
  }

  .ne-ticker-bar { height: 32px; }
  .ne-ticker-item { font-size: 9.5px; letter-spacing: 0.14em; }
}

/* â”€â”€ Override existing Shopify theme header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Hide the old header completely when NE header is present */
.ne-header-active .header-wrapper,
.ne-header-active .announcement-bar-main {
  display: none !important;
}

body.ne-header-active {
  padding-top: 0 !important;
}


/* NE Inline Search */
.ne-header__search-form {
  display: flex;
  align-items: center;
  position: relative;
}
.ne-header__search-input {
  width: 0;
  opacity: 0;
  border: none;
  border-bottom: 1px solid var(--ne-hdr-border);
  background: transparent;
  color: var(--ne-hdr-text);
  font-size: 13px;
  font-family: var(--ne-hdr-font);
  transition: width 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
  padding: 0;
  pointer-events: none;
}
.ne-header__search-input:focus {
  outline: none;
  border-bottom-color: var(--ne-hdr-gold);
}
.ne-header__search-input::placeholder {
  color: rgba(240, 232, 220, 0.5);
}
.ne-header__search-form.is-active .ne-header__search-input {
  width: 140px;
  opacity: 1;
  padding: 4px 0;
  margin-right: 12px;
  margin-left: 8px;
  pointer-events: auto;
}
.ne-header__search-form button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
