.nav-toggle {
  display: none;
}

@media (max-width: 760px) {
  .nsf-nav[data-mobile-nav="ready"],
  .nav[data-mobile-nav="ready"] {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
  }

  .nsf-nav[data-mobile-nav="ready"] .nsf-brand,
  .nav[data-mobile-nav="ready"] .brand,
  .nav[data-mobile-nav="ready"] > a:first-child {
    max-width: calc(100% - 112px);
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid rgba(23, 59, 47, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #173b2f;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 850;
    box-shadow: 0 8px 22px rgba(23, 59, 47, 0.08);
    cursor: pointer;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    border-color: rgba(23, 59, 47, 0.34);
    outline: 3px solid rgba(215, 166, 63, 0.38);
    outline-offset: 3px;
  }

  .nsf-nav[data-mobile-nav="ready"] .nsf-nav__links,
  .nav[data-mobile-nav="ready"] .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-top: 6px;
    padding: 10px;
    border: 1px solid rgba(23, 59, 47, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 36px rgba(23, 59, 47, 0.1);
  }

  .nsf-nav[data-mobile-nav-open="true"] .nsf-nav__links,
  .nav[data-mobile-nav-open="true"] .nav-links {
    display: flex;
  }

  .nsf-nav[data-mobile-nav="ready"] .nsf-nav__links a,
  .nav[data-mobile-nav="ready"] .nav-links a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 9px 10px;
    border-radius: 12px;
    text-decoration: none;
  }

  .nsf-nav[data-mobile-nav="ready"] .nsf-nav__links a:hover,
  .nsf-nav[data-mobile-nav="ready"] .nsf-nav__links a:focus-visible,
  .nav[data-mobile-nav="ready"] .nav-links a:hover,
  .nav[data-mobile-nav="ready"] .nav-links a:focus-visible {
    background: #f7faf2;
    outline: 3px solid rgba(215, 166, 63, 0.34);
    outline-offset: 2px;
  }

  .nsf-nav[data-mobile-nav="ready"] .nsf-nav__links a[href="#product-categories"] {
    justify-content: flex-start;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nsf-nav[data-mobile-nav="ready"] .nsf-nav__links a[href="#product-categories"]::after {
    display: none;
  }
}
