/* AdeptDEV × NANU Market — Premium desktop information navigation v8.29
   Internal signature: AdeptDEV — https://t.me/adeptdevs */

@media (min-width: 901px) {
  .nx-nav,
  .nx-nav__inner {
    overflow: visible !important;
  }

  .nx-nav__inner {
    gap: 14px !important;
  }

  .nx-info-nav {
    position: relative;
    z-index: 40;
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3px;
    overflow: visible;
  }

  .nx-info-item {
    position: relative;
    flex: 0 0 auto;
  }

  .nx-info-trigger,
  .nx-info-link {
    position: relative;
    min-height: 44px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 13px;
    background: transparent;
    color: #373636;
    font-family: "Onest", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none !important;
    cursor: pointer;
    outline: none;
    transition:
      color .18s ease,
      background .18s ease,
      border-color .18s ease,
      box-shadow .18s ease,
      transform .18s ease;
  }

  .nx-info-trigger:hover,
  .nx-info-trigger:focus-visible,
  .nx-info-item.is-open > .nx-info-trigger,
  .nx-info-item:focus-within > .nx-info-trigger,
  .nx-info-link:hover,
  .nx-info-link:focus-visible {
    color: #ec6608 !important;
    background: rgba(236,102,8,.065) !important;
    border-color: rgba(236,102,8,.14) !important;
    box-shadow: 0 8px 22px rgba(55,54,54,.055);
    transform: translateY(-1px);
  }

  .nx-info-link::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;
    height: 2px;
    border-radius: 999px;
    background: #ec6608;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
  }

  .nx-info-link:hover::after,
  .nx-info-link:focus-visible::after {
    transform: scaleX(1);
  }

  .nx-info-chevron {
    width: 7px;
    height: 7px;
    margin-top: -3px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg);
    transform-origin: 62% 62%;
    transition: transform .2s ease;
  }

  .nx-info-item.is-open > .nx-info-trigger .nx-info-chevron,
  .nx-info-item:focus-within > .nx-info-trigger .nx-info-chevron {
    transform: rotate(225deg);
  }

  .nx-info-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 5200;
    width: min(370px, calc(100vw - 40px));
    padding: 10px;
    border: 1px solid rgba(55,54,54,.10);
    border-radius: 20px;
    background: rgba(255,255,255,.975);
    box-shadow: 0 22px 60px rgba(55,54,54,.14), 0 2px 8px rgba(55,54,54,.04);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px) scale(.985);
    transform-origin: top left;
    transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
  }

  .nx-info-dropdown::before {
    content: "";
    position: absolute;
    top: -12px;
    right: 0;
    left: 0;
    height: 14px;
  }

  .nx-info-dropdown::after {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    width: 44px;
    height: 2px;
    border-radius: 0 0 999px 999px;
    background: #ec6608;
  }

  .nx-info-dropdown--compact {
    width: 285px;
  }

  .nx-info-item:nth-child(2) .nx-info-dropdown,
  .nx-info-item:nth-child(3) .nx-info-dropdown {
    left: 50%;
    transform: translate(-50%, 8px) scale(.985);
    transform-origin: top center;
  }

  .nx-info-item.is-open > .nx-info-dropdown,
  .nx-info-item:hover > .nx-info-dropdown,
  .nx-info-item:focus-within > .nx-info-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nx-info-item:nth-child(2).is-open > .nx-info-dropdown,
  .nx-info-item:nth-child(2):hover > .nx-info-dropdown,
  .nx-info-item:nth-child(2):focus-within > .nx-info-dropdown,
  .nx-info-item:nth-child(3).is-open > .nx-info-dropdown,
  .nx-info-item:nth-child(3):hover > .nx-info-dropdown,
  .nx-info-item:nth-child(3):focus-within > .nx-info-dropdown {
    transform: translate(-50%, 0) scale(1);
  }

  .nx-info-dropdown__brand {
    padding: 8px 10px 7px;
    color: rgba(55,54,54,.50);
    font-family: "Onest", Arial, sans-serif;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .nx-info-dropdown__list {
    display: grid;
    gap: 3px;
  }

  .nx-info-dropdown__list > a {
    min-height: 43px;
    padding: 9px 11px 9px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: #373636 !important;
    font-family: "Onest", Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 650;
    line-height: 1.25;
    text-decoration: none !important;
    transition: color .16s ease, background .16s ease, border-color .16s ease, transform .16s ease;
  }

  .nx-info-dropdown__list > a > span:last-child {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(236,102,8,.08);
    color: #ec6608;
    font-size: 14px;
    transition: background .16s ease, transform .16s ease;
  }

  .nx-info-dropdown__list > a:hover,
  .nx-info-dropdown__list > a:focus-visible {
    color: #ec6608 !important;
    background: rgba(236,102,8,.055);
    border-color: rgba(236,102,8,.12);
    transform: translateX(2px);
    outline: none;
  }

  .nx-info-dropdown__list > a:hover > span:last-child,
  .nx-info-dropdown__list > a:focus-visible > span:last-child {
    background: #ec6608;
    color: #fff;
    transform: translateX(1px);
  }

  body.nx-dark .nx-info-trigger,
  body.nx-dark .nx-info-link {
    color: #f4f4f4;
  }

  body.nx-dark .nx-info-trigger:hover,
  body.nx-dark .nx-info-trigger:focus-visible,
  body.nx-dark .nx-info-item.is-open > .nx-info-trigger,
  body.nx-dark .nx-info-item:focus-within > .nx-info-trigger,
  body.nx-dark .nx-info-link:hover,
  body.nx-dark .nx-info-link:focus-visible {
    color: #ff8a3d !important;
    background: rgba(236,102,8,.14) !important;
    border-color: rgba(236,102,8,.24) !important;
  }

  body.nx-dark .nx-info-dropdown {
    border-color: rgba(255,255,255,.10);
    background: rgba(55,54,54,.985);
    box-shadow: 0 24px 64px rgba(0,0,0,.34);
  }

  body.nx-dark .nx-info-dropdown__brand {
    color: rgba(255,255,255,.48);
  }

  body.nx-dark .nx-info-dropdown__list > a {
    color: #f5f5f5 !important;
  }

  body.nx-dark .nx-info-dropdown__list > a:hover,
  body.nx-dark .nx-info-dropdown__list > a:focus-visible {
    color: #ff8a3d !important;
    background: rgba(236,102,8,.13);
    border-color: rgba(236,102,8,.20);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .nx-catalog-button {
    min-width: 166px !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
  }

  .nx-info-nav {
    gap: 1px;
  }

  .nx-info-trigger,
  .nx-info-link {
    min-height: 42px;
    padding-right: 8px;
    padding-left: 8px;
    gap: 6px;
    font-size: 12px;
  }
}

@media (min-width: 901px) and (max-width: 1040px) {
  .nx-nav .nx-sale-cta {
    display: none !important;
  }

  .nx-nav__inner {
    gap: 8px !important;
  }

  .nx-catalog-button {
    min-width: 150px !important;
  }

  .nx-info-trigger,
  .nx-info-link {
    padding-right: 6px;
    padding-left: 6px;
    font-size: 11.5px;
  }
}

@media (max-width: 900px) {
  .nx-info-nav {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nx-info-trigger,
  .nx-info-link,
  .nx-info-chevron,
  .nx-info-dropdown,
  .nx-info-dropdown__list > a,
  .nx-info-dropdown__list > a > span:last-child {
    transition: none !important;
  }
}
