/* ============================================
   HEADER TOP 2026 - FULLY SCOPED & REFACTORED
   All selectors prefixed with #navwrapper-2026
   Zero conflicts with legacy CSS
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
  --promo-height: 0px;
  --utility-top: 0px;
  --header-top: 37px; /* Change from 37px to 140px - mobile default */
  --header-total-height: 140px;
}
/* ============================================
   GLOBAL & WRAPPER
   ============================================ */

/* FIXES OVERSCROLLING ON DESKTOP WHEN SCROLLING TO TOP */
@media (min-width: 1023px) {
  html {
    overscroll-behavior-y: none;
  }
}

/* FIXES NAV NOT STICKING IN CONFIG PAGES ON MOBILE  */
@media (max-width: 1023px) {
  html {
    overflow-y: visible;
  }
}

#navwrapper-2026 {
  display: contents;
}

/* ============================================
   SEARCH BAR
   ============================================ */
#navwrapper-2026 .new-search {
  position: fixed;
  top: 20vh;
  left: 0;
  right: 0;
  z-index: 99;
  background: transparent;
  pointer-events: none;
}

#navwrapper-2026 .new-search .search-bar {
  pointer-events: auto;
}

#navwrapper-2026 .new-search .search-bar.invisible {
  pointer-events: none;
}

#navwrapper-2026 .search-bar {
  width: 100%;
  max-width: 740px;
  padding: 15px 20px;
  background: rgba(238, 238, 238, 0.95);
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
}

#navwrapper-2026 input.search-input {
  width: 100%;
  font-size: 16px;
  background: transparent;
  border: none;
  outline: none;
}

#navwrapper-2026 button.search-submit {
  width: 30px;
  background: transparent;
  border: none;
}

#navwrapper-2026 .search-right-arrow {
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='8' viewBox='0 0 9 8' fill='none'%3E%3Cpath d='M5.74385 0L9 4L5.74385 8L5.04052 7.27407L7.31983 4.51852H0V3.48148H7.31983L5.04052 0.725926L5.74385 0Z' fill='%232D2C2C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: right;
}

/* ============================================
   PROMO BANNER - STICKY
   ============================================ */
#navwrapper-2026 .promotion-banner {
  position: sticky;
  top: 0;
  z-index: 103;
  width: 100%;
  background: #2f2d2d;
  color: #fff;
  text-align: center;
  padding: 7px 0;
}

#navwrapper-2026 a.promotion-bar-link {
  color: #fff;
  text-decoration: none;
}
#navwrapper-2026 p.promotion-text {
  color: #fff;
}

/* ============================================
   TOP UTILITY NAV - STICKY + SCROLL BEHAVIOR
   ============================================ */
#navwrapper-2026 .top-utility-nav {
  position: sticky;
  top: var(--utility-top, 30px);
  z-index: 102;
  width: 100%;
  background: #efefef;
  border-bottom: 1px solid #efefef;
}

/* Fill gap above utility nav - only show when promo exists */
#navwrapper-2026 .top-utility-nav::before {
  content: "";
  position: absolute;
  top: calc(var(--promo-height, 0px) * -1);
  left: 0;
  right: 0;
  height: var(--promo-height, 0px);
  background: #efefef;
  z-index: -1;
}

/* Hide ::before when no promo */
body:not(:has(.promotion-banner)) #navwrapper-2026 .top-utility-nav::before {
  display: none;
}

#navwrapper-2026 .utility-link {
  text-decoration: none;
  color: #6e6e6e;
}

#navwrapper-2026 .utility-link-underline {
  text-decoration: underline !important;
  text-underline-offset: 4px;
  color: initial;
}

#navwrapper-2026 .utility-link:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
  color: #ccc;
}

/* DESKTOP ONLY - Smooth scroll hide/show */
@media (min-width: 1023px) {
  #navwrapper-2026 .top-utility-nav {
    transform: translateY(0);
    opacity: 1;
    transition:
      transform 0.2s ease-in-out,
      opacity 0.2s ease-in-out;
  }

  #navwrapper-2026 .top-utility-nav.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }
}

/* ============================================
   MAIN HEADER - STICKY + SCROLL BEHAVIOR
   ============================================ */
#navwrapper-2026 .main-header {
  position: sticky;
  top: var(--header-top, 68px); /* Use CSS variable */
  z-index: 101;
  width: 100%;
  background: #fff;
  /* SVG FIX maybe? */
  -webkit-font-smoothing: antialiased;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Fill gap above main header */
#navwrapper-2026 .main-header::before {
  content: "";
  position: absolute;
  top: calc(var(--header-top, 68px) * -1); /* Use variable */
  left: 0;
  right: 0;
  height: var(--header-top, 68px); /* Use variable */
  background: #fff;
  z-index: -1;
}

/* Hide main-header ::before when no promo */
body:not(:has(.promotion-banner)) #navwrapper-2026 .main-header::before {
  display: none;
}

#navwrapper-2026 .main-header > .container-fluid {
  position: relative;
}

#navwrapper-2026 .header-border {
  width: 100%;
  height: 1px;
  background: #fff;
}

/* DESKTOP ONLY - Smooth transition when utility nav hides */
@media (min-width: 1023px) {
  #navwrapper-2026 .main-header {
    transition:
      top 0.2s ease-in,
      top 0.1s ease-out;
  }

  /* body.utility-nav-hidden #navwrapper-2026 .main-header {
    top: 29px;
  } */

  body.utility-nav-hidden #navwrapper-2026 .main-header {
    top: calc(var(--promo-height, 0px) - 1px); /* Adjust for promo height */
  }
}

/* PRODUCT SUB NAV STICKY  */

.main-header,
.top-utility-nav,
.promotion-bar-link {
  transition: transform 0.3s ease;
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */
#navwrapper-2026 .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #2f2d2d;
  cursor: pointer;
}

@media (max-width: 1023px) {
  #navwrapper-2026 .mobile-menu-toggle {
    display: block;
  }
}

/* ============================================
   LOGO / BRAND
   ============================================ */
@media (max-width: 1023px) {
  #navwrapper-2026 .nav-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ============================================
   MAIN NAVIGATION
   ============================================ */

#navwrapper-2026 .nav-menu {
  list-style: none;
}

#navwrapper-2026 .nav-item {
  position: relative;
  display: inline-block;
}

#navwrapper-2026 .nav-link {
  display: block;
  text-decoration: none;
  white-space: nowrap;
}

/* ============================================
   NAV ICONS
   ============================================ */
#navwrapper-2026 .nav-icons {
  gap: 10px;
  cursor: pointer;
}

#navwrapper-2026 .nav-icon {
  width: 24px;
  height: 24px;
  color: #2f2d2d;
}

#navwrapper-2026 .nav-ref-code {
  color: #6e6e6e;
}

/* ============================================
   MEGA MENU
   ============================================ */
#navwrapper-2026 .has-megamenu {
  position: static;
}

#navwrapper-2026 .megamenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 100;
  width: 100%;
  max-height: calc(100vh - 200px);
  margin-top: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s 0.2s;
}

#navwrapper-2026 .has-megamenu:hover .megamenu,
#navwrapper-2026 .has-megamenu:focus-within .megamenu,
#navwrapper-2026 .has-megamenu.active .megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
}

/* Fill gap above mega menu */
#navwrapper-2026 .megamenu::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: #fff;
  z-index: 1;
}

#navwrapper-2026 .megamenu-inner {
  max-width: 100%;
  width: 100%;
}

#navwrapper-2026 .megamenu .container-fluid {
  max-width: 1512px;
}

#navwrapper-2026 .megamenu::-webkit-scrollbar {
  width: 6px;
}

#navwrapper-2026 .megamenu::-webkit-scrollbar-track {
  background: #f5f5f5;
}

#navwrapper-2026 .megamenu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

/* ============================================
   MEGA MENU SECTIONS
   ============================================ */
#navwrapper-2026 .megamenu-heading {
  color: #6e6e6e;
}

#navwrapper-2026 .megamenu-list {
  list-style: none;
}

#navwrapper-2026 .megamenu-list a {
  display: inline-block;
  text-decoration: none;
}

/* ============================================
   MEGA MENU FEATURED IMAGES
   ============================================ */
#navwrapper-2026 .megamenu-featured {
  position: relative;
}

#navwrapper-2026 .megamenu-featured a {
  display: block;
  text-decoration: none;
}

#navwrapper-2026 .megamenu-image {
  position: relative;
  width: 100%;
  height: fit-content;
  background: #f5f5f5;
  overflow: hidden;
}

#navwrapper-2026 .megamenu-image img {
  width: 100%;
  /* height: 100% !important; */
  height: auto !important; /* to work correctly with .megamenu-image height: fit-content */
  object-fit: cover;
}

/* ============================================
   MOBILE MENU
   ============================================ */
#navwrapper-2026 .mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Hide main menu content when ANY submenu is active */
#navwrapper-2026
  .mobile-menu:has(.mobile-submenu.active)
  > .mobile-menu-nav
  > .mobile-menu-spacer,
#navwrapper-2026
  .mobile-menu:has(.mobile-submenu.active)
  > .mobile-menu-nav
  > .mobile-menu-list {
  display: none !important;
}

/* Hide parent submenu content when child submenu is active */
#navwrapper-2026
  .mobile-submenu:has(.mobile-submenu.active)
  > .mobile-submenu-spacer,
#navwrapper-2026
  .mobile-submenu:has(.mobile-submenu.active)
  > .mobile-submenu-header,
#navwrapper-2026
  .mobile-submenu:has(.mobile-submenu.active)
  > .mobile-submenu-list,
#navwrapper-2026
  .mobile-submenu:has(.mobile-submenu.active)
  > .mobile-submenu-images {
  display: none !important;
}

#navwrapper-2026 .mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99;
  width: 100%;
  max-width: 70vw;
  height: 100vh;
  background: transparent;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transition: left 0.3s ease;
}

#navwrapper-2026 .mobile-menu-nav {
  height: auto;
  min-height: 100%;
  overflow: visible;
  background: transparent;
}

#navwrapper-2026 .mobile-menu-spacer {
  flex-shrink: 0;
  height: var(--header-total-height, 140px);
  background: #fff;
}

#navwrapper-2026 .mobile-menu-list {
  flex: 0 0 auto;
  list-style: none;
  background: #fff;
}

#navwrapper-2026 .mobile-menu-item {
  flex: 0 0 auto;
  background: #fff;
}

#navwrapper-2026 .mobile-menu-link {
  text-decoration: none;
  background: #fff;
}

#navwrapper-2026 .mobile-menu-link svg {
  opacity: 0.4;
}

#navwrapper-2026 .mobile-menu-footer {
  flex-shrink: 0;
  gap: 12px;
  background: #fff;
}

/* Hide main menu footer when any submenu is active */
#navwrapper-2026
  .mobile-menu:has(.mobile-submenu.active)
  > .mobile-menu-nav
  > .mobile-menu-footer {
  display: none;
}

/* Hide ALL submenu footers by default */
#navwrapper-2026 .mobile-submenu .mobile-menu-footer {
  display: none;
}

/* Show footer ONLY in the currently active submenu (deepest level) */
#navwrapper-2026 .mobile-submenu.active > .mobile-menu-footer {
  display: flex;
}

/* Hide footer if this active submenu has an active child */
#navwrapper-2026
  .mobile-submenu:has(.mobile-submenu.active)
  > .mobile-menu-footer {
  display: none !important;
}

#navwrapper-2026 .mobile-menu-footer-link {
  gap: 12px;
  text-decoration: none;
}

#navwrapper-2026 .mobile-menu-bottom-block {
  flex: 1;
  flex-shrink: 0;
  width: 100%;
  min-height: 100px;
  background: transparent !important;
}

/* Body classes - NOT prefixed (they're on <body>) */
body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open #navwrapper-2026 .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

body.mobile-menu-open #navwrapper-2026 .mobile-menu {
  left: 0;
}

/* ============================================
   MOBILE SUBMENU
   ============================================ */
#navwrapper-2026 .mobile-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 10;
  width: 100%;
  height: 100vh;
  background: transparent;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transition: left 0.3s ease;
}

#navwrapper-2026 .mobile-submenu.active {
  left: 0;
}

#navwrapper-2026 .mobile-submenu-spacer {
  flex-shrink: 0;
  height: var(--header-total-height, 140px);
  background: #fff;
}

#navwrapper-2026 .mobile-submenu-header {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  background: #fff;
}

#navwrapper-2026 .mobile-back-btn {
  gap: 12px;
  width: 100%;
  text-align: left;
  text-decoration: none;
  background: #fff;
  border: none;
  cursor: pointer;
}

#navwrapper-2026 .mobile-back-btn svg {
  flex-shrink: 0;
}

#navwrapper-2026 .mobile-submenu-list {
  flex: 0 0 auto;
  width: 100%;
  max-height: none;
  background: #fff;
  list-style: none;
  overflow: hidden;
}

#navwrapper-2026 .mobile-submenu-item {
  position: relative;
  background: #fff;
}

/* Remove focus outline on click, keep for keyboard */
#navwrapper-2026 .mobile-menu-link:focus:not(:focus-visible),
#navwrapper-2026 .mobile-back-btn:focus:not(:focus-visible) {
  outline: none;
}

#navwrapper-2026 .mobile-menu-link:focus-visible,
#navwrapper-2026 .mobile-back-btn:focus-visible {
  outline: 2px solid #2f2d2d;
  outline-offset: 2px;
}

#navwrapper-2026 .mobile-submenu-images {
  border-bottom: none;
  background: #fff;
}

#navwrapper-2026 .mobile-submenu-images img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

#navwrapper-2026 .mobile-submenu-images a {
  display: block;
  text-decoration: none;
}

#navwrapper-2026 .mobile-submenu-images .mt-2 {
  margin-top: 8px;
}

/* ============================================
   MODAL SYSTEM (SHARED STYLES)
   ============================================ */
#navwrapper-2026 .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#navwrapper-2026 .modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

#navwrapper-2026 .modal-container {
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

#navwrapper-2026 .modal-overlay.active .modal-container {
  transform: scale(1);
}

#navwrapper-2026 .modal-content {
  max-height: 90vh;
}

#navwrapper-2026 .modal-header {
  gap: 12px;
  border: none;
}

#navwrapper-2026 .modal-header svg:first-child {
  flex-shrink: 0;
  color: #2f2d2d;
}

#navwrapper-2026 .modal-title {
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  color: #2f2d2d;
}

#navwrapper-2026 .modal-close {
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

#navwrapper-2026 .modal-close:hover {
  background: #f5f5f5;
}

#navwrapper-2026 .modal-body {
  overflow-y: auto;
}

#navwrapper-2026 .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;
}

/* Modal prevents body scroll */
body.modal-open {
  overflow: hidden;
}

#navwrapper-2026 .primary-btn-dark,
#navwrapper-2026 .secondary-btn-gray {
  padding: 10px;
}

/* ============================================
   REGION MODAL
   ============================================ */
#navwrapper-2026 .form-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  color: #2f2d2d;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

#navwrapper-2026 .form-select:focus {
  outline: none;
  border-color: #2f2d2d;
}

/* ============================================
   ACCOUNT MODAL (SHARED)
   ============================================ */
#navwrapper-2026 .modal-container-account {
  max-width: 920px;
}

#navwrapper-2026 .modal-header-account {
  border-bottom: none;
}

/* ============================================
   ACCOUNT MODAL - LOGGED OUT STATE
   ============================================ */
#navwrapper-2026 .account-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

#navwrapper-2026 .account-column {
  gap: 16px;
}

#navwrapper-2026 .account-divider {
  width: 1px;
  height: 100%;
  background: #e0e0e0;
  align-self: stretch;
}

#navwrapper-2026 .account-title {
  font-size: 24px;
  font-weight: 400;
  color: #2f2d2d;
}

#navwrapper-2026 .form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  color: #2f2d2d;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  transition: border-color 0.2s ease;
}

#navwrapper-2026 .form-input:focus {
  outline: none;
  border-color: #2f2d2d;
}

#navwrapper-2026 .form-input::placeholder {
  color: #2f2d2d;
}

#navwrapper-2026 .link-forgot {
  font-size: 14px;
  text-align: left;
  text-decoration: none;
}

#navwrapper-2026 .link-forgot:hover {
  text-decoration: underline;
}

#navwrapper-2026 .link-region {
  gap: 6px;
  font-size: 14px;
  text-decoration: none;
}

#navwrapper-2026 .link-region:hover {
  color: #2f2d2d;
}

#navwrapper-2026 .reference-section {
  border-top: 1px solid #e0e0e0;
}

#navwrapper-2026 .reference-title {
  font-size: 18px;
  font-weight: 400;
  color: #2f2d2d;
}

/* ============================================
   ACCOUNT MODAL - LOGGED IN STATE
   ============================================ */
#navwrapper-2026 .account-logged-in {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
  min-height: 300px;
}

#navwrapper-2026 .account-column-logged {
  gap: 20px;
}

#navwrapper-2026 .account-divider-logged {
  width: 1px;
  height: 100%;
  background: #e0e0e0;
  align-self: stretch;
}

#navwrapper-2026 .account-title-logged {
  font-size: 32px;
  font-weight: 300;
}

#navwrapper-2026 .account-links {
  gap: 16px;
}

#navwrapper-2026 .account-link {
  gap: 12px;
  font-size: 16px;
  color: #2f2d2d;
  text-decoration: none;
  transition: color 0.2s ease;
}

#navwrapper-2026 .account-link:hover {
  color: #2f2d2d;
}

#navwrapper-2026 .account-link svg {
  flex-shrink: 0;
}

#navwrapper-2026 .link-region-logged {
  gap: 6px;
  margin-top: auto;
  font-size: 14px;
  text-decoration: none;
}

#navwrapper-2026 .link-region-logged:hover {
  color: #2f2d2d;
}

#navwrapper-2026 .reference-title-logged {
  font-size: 22px;
  font-weight: 400;
  color: #2f2d2d;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 1023px) {
  /* Hide desktop nav */
  #navwrapper-2026 .nav-menu {
    display: none !important;
  }

  /* Show/hide icons */
  #navwrapper-2026 .nav-icon-cart {
    display: flex;
  }

  #navwrapper-2026 .nav-icon-globe,
  #navwrapper-2026 .nav-icon-user,
  #navwrapper-2026 .nav-ref-code {
    display: none !important;
  }

  #navwrapper-2026 .nav-icons {
    gap: 16px;
  }

  /* Mobile sticky positioning */
  #navwrapper-2026 .promotion-banner {
    top: 0 !important;
  }

  #navwrapper-2026 .top-utility-nav {
    top: var(--utility-top, 0) !important;
  }

  #navwrapper-2026 .top-utility-nav::before {
    display: block;
    top: calc(var(--utility-top, 0px) * -1);
    height: var(--utility-top, 0px);
  }

  #navwrapper-2026 .main-header {
    top: var(--header-top, 0) !important;
  }

  #navwrapper-2026 .main-header::before {
    display: block;
    top: calc(var(--header-top, 0px) * -1);
    height: var(--header-top, 0px);
  }

  #navwrapper-2026 .new-search {
    top: 25vh;
    padding: 0 5px;
  }
}

/* ============================================
   RESPONSIVE - EXTRA SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
  #navwrapper-2026 .mobile-menu {
    max-width: 100%;
  }
}

@media (max-width: 425px) {
  #navwrapper-2026 .nav-icons {
    gap: 12px;
  }

  #navwrapper-2026 .nav-icon {
    width: 20px;
    height: 20px;
  }

  #navwrapper-2026 .nav-icon svg {
    width: 18px;
    height: 18px;
  }
  #navwrapper-2026 .utility-link:not(:last-child)::after {
    content: "|";
    margin: 0 0.3rem;
    color: #ccc;
  }
}

@media (max-width: 360px) {
  #navwrapper-2026 .nav-icons {
    gap: 10px;
  }

  #navwrapper-2026 .nav-icon {
    width: 18px;
    height: 18px;
  }

  #navwrapper-2026 .nav-icon svg {
    width: 16px;
    height: 16px;
  }

  #navwrapper-2026 .new-search {
    top: 30vh;
    padding: 0 5px;
  }

  #navwrapper-2026 .utility-link {
    font-size: 10px;
  }
}

/* ============================================
   RESPONSIVE - TABLET & DESKTOP
   ============================================ */
@media (min-width: 1023px) and (max-width: 1279px) {
  #navwrapper-2026 .nav-menu {
    gap: 15px;
  }
}

@media (min-width: 1280px) and (max-width: 1511px) {
  #navwrapper-2026 .nav-menu {
    gap: 30px;
  }
}

@media (min-width: 1512px) {
  #navwrapper-2026 .nav-menu {
    gap: 30px;
  }
}

/* ============================================
   RESPONSIVE - ACCOUNT MODAL
   ============================================ */
@media (max-width: 768px) {
  #navwrapper-2026 .modal-container-account {
    max-width: 100%;
  }

  #navwrapper-2026 .account-grid,
  #navwrapper-2026 .account-logged-in {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #navwrapper-2026 .account-divider,
  #navwrapper-2026 .account-divider-logged {
    width: 100%;
    height: 1px;
  }
}
