.top-strip {
      background: var(--blue-950);
      color: var(--white);
      font-size: 13px;
    }
    .top-strip-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 9px 18px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      flex-wrap: wrap;
    }
    .top-strip strong { color: var(--yellow); }

    .header {
      background: var(--white);
      border-bottom: 1px solid var(--line);
      position: sticky;
      top: 0;
      z-index: 30;
    }
    .header-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 12px 18px;
      display: grid;
      grid-template-columns: 210px 1fr auto;
      gap: 18px;
      align-items: center;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      min-width: 0;
      flex: 0 0 auto;
    }
    .brand-logo {
      display: block;
      width: auto;
      height: 56px;
      max-width: 200px;
      object-fit: contain;
    }

    .search-box {
      display: grid;
      grid-template-columns: 170px 1fr 128px;
      border: 2px solid var(--blue-800);
      border-radius: 999px;
      overflow: hidden;
      background: var(--white);
      min-height: 48px;
    }
    .search-box select,
    .search-box input {
      border: 0;
      outline: 0;
      padding: 0 16px;
      background: var(--white);
    }
    .search-box select {
      border-right: 1px solid var(--line);
      color: var(--blue-900);
      font-weight: 700;
    }
    .search-box button {
      border: 0;
      background: var(--yellow);
      color: var(--blue-950);
      font-weight: 900;
      cursor: pointer;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
      min-width: 0;
    }

    .nd-lang-switch {
      position: relative;
      z-index: 55;
    }
    .nd-lang-switch-toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--line);
      background: #f3f5f8;
      color: var(--ink);
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      min-height: 44px;
    }
    .nd-lang-flag {
      border-radius: 2px;
      object-fit: cover;
      flex: 0 0 auto;
    }
    .nd-lang-caret {
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 6px solid var(--muted);
      margin-left: 2px;
    }
    .nd-lang-menu {
      position: absolute;
      right: 0;
      top: calc(100% + 8px);
      min-width: 170px;
      margin: 0;
      padding: 6px;
      list-style: none;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 14px;
      box-shadow: var(--shadow);
      z-index: 50;
      display: none;
    }
    .nd-lang-switch.open .nd-lang-menu {
      display: block;
    }
    .nd-lang-option {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 10px;
      color: var(--ink);
      font-weight: 600;
      font-size: 14px;
    }
    .nd-lang-option:hover {
      background: var(--blue-50);
    }

    .nd-cart-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      color: var(--orange);
      background: transparent;
      flex: 0 0 auto;
    }
    .nd-cart-btn:hover {
      background: #fff6e8;
    }
    .nd-cart-icon {
      width: 28px;
      height: 28px;
      display: block;
    }
    .nd-cart-badge {
      position: absolute;
      top: 2px;
      right: 0;
      min-width: 18px;
      height: 18px;
      padding: 0 5px;
      border-radius: 999px;
      background: var(--blue-900);
      color: var(--white);
      font-size: 11px;
      font-weight: 800;
      line-height: 18px;
      text-align: center;
    }

    .nd-signin-btn {
      display: inline-flex;
      align-items: stretch;
      border: 1px solid var(--line);
      background: #f3f5f8;
      color: var(--ink);
      border-radius: 999px;
      overflow: hidden;
      min-height: 44px;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
    }
    .nd-signin-text {
      display: inline-flex;
      align-items: center;
      padding: 0 14px;
    }
    .nd-signin-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      background: var(--orange);
      color: var(--white);
    }
    .nd-signin-arrow svg {
      width: 20px;
      height: 20px;
    }

    .action-pill {
      border: 1px solid var(--line);
      background: var(--white);
      color: var(--blue-950);
      padding: 10px 13px;
      border-radius: 999px;
      font-weight: 700;
      cursor: pointer;
    }
    .cart-pill {
      background: var(--blue-900);
      color: var(--white);
      border-color: var(--blue-900);
    }

    .nav {
      background: var(--blue-900);
      color: var(--white);
    }
    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 18px;
      display: flex;
      align-items: center;
      gap: 6px;
      overflow-x: auto;
    }
    .nav a,
    .nav button,
    .nav .nav-products-link {
      padding: 14px 16px;
      font-weight: 700;
      font-size: 14px;
      white-space: nowrap;
      border-bottom: 3px solid transparent;
      background: transparent;
      color: var(--white);
      border-top: 0;
      border-left: 0;
      border-right: 0;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .nav-products-wrap {
      position: relative;
      flex: 0 0 auto;
    }
    .nav-products-caret {
      font-size: 12px;
      line-height: 1;
      opacity: 0.9;
    }
    .nav a.active,
    .nav a:hover,
    .nav button.active,
    .nav button:hover,
    .nav .nav-products-link.active,
    .nav .nav-products-link:hover,
    .nav-products-wrap.is-open .nav-products-link {
      background: rgba(255, 255, 255, 0.08);
      border-bottom-color: var(--yellow);
    }

.footer {
      background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-950) 100%);
      color: var(--white);
      margin-top: 44px;
      background-repeat: no-repeat;
      background-position: left bottom;
      background-size: cover;
    }
    .nd-footer-shell {
      max-width: var(--max);
      margin: 0 auto;
      padding: 40px 18px 32px;
    }
    .nd-footer-grid {
      display: grid;
      grid-template-columns: minmax(300px, 1.65fr) minmax(150px, 0.75fr) minmax(220px, 1fr);
      gap: 28px 36px;
      align-items: start;
    }
    .nd-footer-col {
      min-width: 0;
    }
    .nd-footer-heading,
    .footer h3 {
      margin: 0 0 16px;
      color: var(--yellow);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1.2;
    }
    .nd-footer-subhead {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 12px;
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
    }
    .nd-footer-locations {
      column-count: 2;
      column-gap: 28px;
      column-rule: 1px solid rgba(255, 255, 255, 0.14);
    }
    .nd-footer-locations--stack {
      column-count: 1;
      column-rule: none;
    }
    .footer p:not(.nd-footer-follow),
    .footer li,
    .nd-footer-rich-text,
    .nd-footer-muted {
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.55;
      font-size: 15px;
    }
    .nd-footer-muted {
      margin: 0;
    }
    .footer ul { list-style: none; margin: 0; padding: 0; }
    .footer li { margin: 0; }
    .nd-footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }
    .nd-footer-links a {
      color: rgba(255, 255, 255, 0.92);
      text-decoration: none;
      font-size: 14px;
      line-height: 1.4;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: color 0.15s ease;
    }
    .nd-footer-chevron {
      color: var(--yellow);
      font-size: 18px;
      font-weight: 700;
      line-height: 1;
      flex: 0 0 auto;
    }
    .nd-footer-links a:hover,
    .nd-footer-links a.is-active {
      color: var(--yellow);
    }
    .nd-footer-icon {
      width: 16px;
      height: 16px;
      display: inline-block;
      background: currentColor;
      color: var(--yellow);
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-position: center;
      -webkit-mask-size: contain;
      mask-size: contain;
      flex: 0 0 auto;
    }
    .nd-footer-icon--map {
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E");
    }
    .nd-footer-rich-text p,
    .nd-footer-rich-text div,
    .nd-footer-locations p {
      margin: 0 0 8px;
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.55;
      font-size: 13px;
      overflow-wrap: anywhere;
    }
    .nd-footer-contact .nd-footer-rich-text strong,
    .nd-footer-contact .nd-footer-rich-text b,
    .nd-footer-locations strong,
    .nd-footer-locations b {
      color: rgba(255, 255, 255, 0.92);
      font-weight: 400;
    }
    .nd-footer-contact .nd-footer-branch-title,
    .nd-footer-locations .nd-footer-branch-title {
      color: var(--yellow) !important;
      font-weight: 700 !important;
    }
    .nd-footer-contact .nd-footer-icon {
      color: var(--white);
    }
    .nd-footer-rich-text a,
    .nd-footer-locations a {
      color: rgba(255, 255, 255, 0.95);
      text-decoration: none;
    }
    .nd-footer-rich-text a:hover,
    .nd-footer-locations a:hover {
      color: var(--yellow);
    }
    .nd-footer-map-slot {
      width: 100%;
      max-width: 240px;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nd-footer-map-slot iframe {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 200px;
      border: 0;
    }
    .nd-footer-social-block {
      margin-top: 0;
    }
    .nd-footer-social-block--below-map {
      margin-top: 16px;
    }
    .footer p.nd-footer-follow,
    .nd-footer-follow {
      margin: 0 0 10px;
      color: var(--yellow) !important;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.4;
    }
    .nd-footer-social {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    .nd-footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: var(--blue-700);
      border: 1px solid rgba(255, 255, 255, 0.12);
      transition: background 0.15s ease, transform 0.15s ease;
    }
    .nd-footer-social a:hover {
      background: var(--blue-800);
      transform: translateY(-1px);
    }
    .nd-footer-social img {
      display: block;
      width: 20px;
      height: 20px;
      object-fit: contain;
    }
    .footer-bottom,
    .nd-footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding: 16px 18px 20px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
    }
    .nd-footer-bottom-inner {
      max-width: var(--max);
      margin: 0 auto;
      text-align: center;
      line-height: 1.55;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.68);
    }
    .nd-footer-bottom-inner p {
      display: inline;
      margin: 0;
      color: inherit;
    }
    .nd-footer-bottom-inner a {
      color: var(--yellow);
      text-decoration: none;
    }
    .nd-footer-bottom-inner a:hover {
      text-decoration: underline;
    }
    .nd-footer-bottom-sep {
      margin: 0 8px;
      color: rgba(255, 255, 255, 0.45);
    }
    .nd-scroll-top,
    .nd-scroll-bottom {
      position: fixed;
      right: 18px;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 999px;
      background: var(--yellow);
      color: var(--blue-950);
      font-size: 20px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(7, 29, 58, 0.28);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
      z-index: 40;
    }
    .nd-scroll-top {
      bottom: 18px;
      transform: translateY(8px);
    }
    .nd-scroll-bottom {
      top: 18px;
      transform: translateY(-8px);
    }
    .nd-scroll-top.is-visible,
    .nd-scroll-bottom.is-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

/* New-design header enhancements */
.top-strip-support {
  color: var(--white);
  text-decoration: none;
}
.top-strip-support:hover {
  color: var(--yellow);
}

a.action-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nd-search-wrapper {
  position: relative;
  width: 100%;
  min-width: 0;
}

.nd-search-results,
.nd-search-results.search-result,
ul.nd-search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 60;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-height: 340px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nd-search-results li.border-bottom1 {
  padding: 10px 14px 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: #f7f9fc;
  border-bottom: 1px solid #e8eef7;
}

.nd-search-results .header-search-suggestion,
.nd-search-results a {
  display: block;
  padding: 10px 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid #e8eef7;
  font-size: 14px;
}

.nd-search-results .header-search-suggestion:hover,
.nd-search-results a:hover {
  background: var(--blue-50);
}

.nd-search-results .header-search-result-product {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.nd-search-results .header-search-result-thumb {
  width: 42px;
  height: 42px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.nd-search-results .header-search-result-thumb img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nd-search-results .header-search-result-title {
  display: block;
  color: var(--ink);
  line-height: 1.25;
  font-weight: 700;
}

.nd-search-results .header-search-result-price {
  display: block;
  color: #f15a24;
  font-size: 12px;
  margin-top: 3px;
  font-weight: 700;
}

.nd-search-results .header-search-result-product > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nd-search-results .header-search-result-product > span:last-child > span:not(.header-search-result-title):not(.header-search-result-price) {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

/* Hamburger toggle — visible on tablet/mobile via responsive.css */
.nd-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f3f5f8;
  color: var(--blue-950);
  cursor: pointer;
  flex: 0 0 auto;
}
.nd-menu-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nd-menu-toggle[aria-expanded="true"] .nd-menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nd-menu-toggle[aria-expanded="true"] .nd-menu-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nd-menu-toggle[aria-expanded="true"] .nd-menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nd-mobile-drawer[hidden] {
  display: none;
}
.nd-mobile-drawer.open {
  display: block;
}
.nd-mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 29, 58, 0.45);
  z-index: 80;
}
.nd-mobile-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100vw);
  max-width: 100%;
  height: 100%;
  max-height: 100dvh;
  background: var(--white);
  z-index: 81;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
  box-shadow: -12px 0 40px rgba(7, 29, 58, 0.18);
  transform: translateX(100%);
  transition: transform 0.24s ease;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 14px;
}
.nd-mobile-drawer.open .nd-mobile-drawer-panel {
  transform: translateX(0);
}
.nd-mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--blue-900);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1;
}
.nd-mobile-drawer-head strong {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nd-drawer-toolbar {
  display: none;
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}
.nd-drawer-lang {
  margin-bottom: 10px;
}
.nd-drawer-lang-toggle {
  width: 100%;
  justify-content: space-between;
  background: var(--white);
  min-height: 38px;
  padding: 6px 10px;
  font-size: 13px;
}
.nd-drawer-lang-menu {
  left: 14px;
  right: 14px;
  width: auto;
  max-width: calc(100% - 28px);
  box-sizing: border-box;
}
.nd-drawer-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.nd-drawer-auth--single {
  grid-template-columns: 1fr;
}
.nd-drawer-auth-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--blue-950);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}
.nd-drawer-auth-btn:hover {
  background: var(--blue-50);
  border-color: #b8cdea;
}
.nd-drawer-auth-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--blue-800);
}
.nd-drawer-auth-btn span:last-child {
  line-height: 1.2;
}
.nd-mobile-drawer-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.nd-mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 4px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.nd-mobile-drawer-link,
.nd-mobile-drawer-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: var(--blue-950);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.nd-mobile-drawer-link:hover,
.nd-mobile-drawer-button:hover,
.nd-mobile-drawer-link.active,
.nd-mobile-drawer-button.active {
  background: var(--blue-50);
}
.nd-mobile-drawer-button.open {
  background: var(--blue-50);
}
.nd-mobile-drawer-chevron {
  color: var(--muted);
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.2s ease;
}
.nd-mobile-drawer-button.open .nd-mobile-drawer-chevron,
.nd-drawer-products-expand.open .nd-mobile-drawer-chevron {
  transform: rotate(90deg);
}
.nd-drawer-products-wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  border-bottom: 1px solid var(--line);
}
.nd-drawer-products-wrap.is-open {
  background: var(--blue-50);
}
.nd-drawer-products-link {
  flex: 1;
  min-width: 0;
  border-bottom: 0;
}
.nd-drawer-products-expand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  min-height: 48px;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--blue-950);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nd-drawer-products-expand:hover,
.nd-drawer-products-expand.open,
.nd-drawer-products-expand.active {
  background: var(--blue-50);
}
.nd-drawer-submenu--taxonomy {
  padding-top: 0;
}
.nd-drawer-taxonomy-step {
  margin: 0;
  padding: 10px 14px 6px 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-800);
}
.nd-drawer-submenu {
  background: #f7f9fc;
  border-bottom: 1px solid #e8eef7;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.nd-drawer-submenu[hidden] {
  display: none;
}
.nd-drawer-submenu-label {
  margin: 0;
  padding: 8px 14px 4px 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.nd-drawer-submenu-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  padding: 10px 14px 10px 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}
.nd-drawer-submenu-link:hover {
  background: #eef4fb;
  color: var(--blue-800);
}
.nd-drawer-submenu-link--all {
  font-weight: 800;
  color: var(--blue-800);
  padding-bottom: 14px;
}
.nd-drawer-taxonomy {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nd-drawer-taxonomy-back {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px 10px 18px;
  border: 0;
  border-bottom: 1px solid #e8eef7;
  background: #eef4fb;
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.nd-drawer-taxonomy-back-icon {
  font-size: 18px;
  line-height: 1;
}
.nd-drawer-taxonomy-list {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
}
.nd-drawer-taxonomy-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 44px;
  padding: 10px 14px 10px 22px;
  border: 0;
  border-bottom: 1px solid #edf2f8;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nd-drawer-taxonomy-item:hover,
.nd-drawer-taxonomy-item:focus-visible {
  background: #eef4fb;
  color: var(--blue-800);
  outline: none;
}
.nd-drawer-taxonomy-label {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}
.nd-drawer-taxonomy-chevron {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 16px;
  font-weight: 900;
}
.nd-drawer-taxonomy-link {
  cursor: pointer;
}
.nd-drawer-taxonomy-fallback[hidden] {
  display: none;
}
.nd-mobile-drawer-section {
  padding: 10px 14px 16px;
  border-bottom: 0;
}
.nd-mobile-drawer-section-title {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nd-mobile-drawer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}
.nd-mobile-drawer-item:hover {
  color: var(--blue-800);
}
.nd-mobile-drawer-cart {
  justify-content: space-between;
}
.nd-mobile-drawer-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--blue-900);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
}
.nd-mobile-drawer-lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0 2px;
  color: var(--blue-950);
  font-weight: 700;
  font-size: 13px;
}
.nd-mobile-drawer-support {
  padding-bottom: 18px;
}
.nd-mobile-drawer-support-text {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

body.nd-drawer-open {
  overflow: hidden;
}
