.sb-mobile-shell,
.sb-mobile-menu,
.sb-mobile-menu-overlay {
  display: none;
}

@media (max-width: 760px) {
  .nav-bar {
    min-height: 56px !important;
    overflow: visible !important;
  }

  .nav-bar .nav-inner {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 56px !important;
    height: 56px !important;
    padding: 0 16px !important;
  }

  .nav-bar .nav-brand {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    font-size: 0 !important;
    gap: 0 !important;
  }

  .nav-bar .nav-brand h4,
  .nav-bar .nav-links,
  .nav-bar .nav-actions,
  body.sb-unified-shell > .mobile-panel,
  body.sb-unified-shell > .mobile-panel-overlay,
  body.sb-unified-shell > .mobile-nav-drawer,
  body.sb-unified-shell > .mobile-nav-overlay,
  body.sb-unified-shell > .mobile-topbar,
  body.sb-unified-shell .nav-bar .mobile-toggle,
  body.sb-unified-shell .nav-bar [id*="mobileMenuToggle"],
  body.sb-unified-shell .nav-bar [id*="hamburgerBtn"] {
    display: none !important;
  }

  .sb-mobile-shell {
    position: absolute !important;
    top: 0 !important;
    right: 6px !important;
    display: block !important;
    width: 54px !important;
    height: 56px !important;
    margin: 0 !important;
  }

  /* The bag replaces the navigation dropdown on mobile. */
  body.sb-mobile-bag-open #cartOverlay {
    display: block !important;
    position: fixed !important;
    inset: 56px 0 0 !important;
    z-index: 198 !important;
    background: rgba(0,0,0,.18) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  #cartDrawer,
  #cartPanel {
    position: fixed !important;
    top: 56px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    z-index: 202 !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: calc(100dvh - 56px) !important;
    margin: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    border-top: 1px solid rgba(0,0,0,.04) !important;
    border-bottom: 1px solid rgba(0,0,0,.07) !important;
    border-radius: 0 0 22px 22px !important;
    background: rgba(255,255,255,.94) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,.08) !important;
    backdrop-filter: saturate(180%) blur(24px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(24px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-16px) !important;
    transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .22s ease, visibility .22s ease !important;
  }

  #cartDrawer.open,
  #cartPanel.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  #cartDrawer .cart-body,
  #cartDrawer .cart-items,
  #cartPanel .cart-body,
  #cartPanel .cart-items {
    max-height: calc(100dvh - 220px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .sb-mobile-menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    z-index: 203;
    display: grid;
    place-content: center;
    width: 54px;
    height: 56px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .sb-mobile-menu-toggle .sb-mobile-menu-bar {
    grid-area: 1 / 1;
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: #1d1d1f;
    transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s ease;
  }

  .sb-mobile-menu-toggle .sb-mobile-menu-bar:first-child { transform: translateY(-5px); }
  .sb-mobile-menu-toggle .sb-mobile-menu-bar:nth-child(3) { transform: translateY(5px); }
  .sb-mobile-menu-toggle.open .sb-mobile-menu-bar:first-child { transform: rotate(45deg); }
  .sb-mobile-menu-toggle.open .sb-mobile-menu-bar:nth-child(2) { opacity: 0; }
  .sb-mobile-menu-toggle.open .sb-mobile-menu-bar:nth-child(3) { transform: rotate(-45deg); }

  .sb-mobile-header-bag-count {
    position: absolute;
    top: 11px;
    right: 3px;
    z-index: 204;
    display: inline-grid !important;
    place-items: center;
    min-width: 18px;
    height: 18px !important;
    padding: 0 5px;
    border: 0;
    border-radius: 999px !important;
    background: #1d1d1f !important;
    color: #fff !important;
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
    line-height: 1 !important;
    pointer-events: none;
  }

  .sb-mobile-header-bag-count[hidden] { display: none !important; }

  .sb-mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 56px 0 0;
    z-index: 198;
    background: rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
  }

  .sb-mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .sb-mobile-menu {
    display: block;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 202;
    width: 100%;
    max-height: calc(100dvh - 56px);
    padding: 6px 28px 28px;
    overflow-y: auto;
    background: rgba(255,255,255,.94);
    border-top: 1px solid rgba(0,0,0,.04);
    border-bottom: 1px solid rgba(0,0,0,.07);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .22s ease, visibility .22s ease;
  }

  .sb-mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sb-mobile-menu-head { display: none; }
  .sb-mobile-menu-links { display: grid; }

  .sb-mobile-menu-links a,
  .sb-mobile-bag-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.055);
    background: transparent;
    color: #1d1d1f !important;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    font-size: 18px !important;
    font-weight: 500 !important;
    letter-spacing: -.02em;
    text-align: left;
    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer;
  }

  .sb-mobile-menu-links a::after {
    content: "›";
    color: #86868b;
    font-size: 23px;
    font-weight: 300;
  }

  .sb-mobile-bag-count {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #1d1d1f;
    color: #fff;
    font-size: 10px;
  }

  .sb-mobile-account {
    display: flex;
    width: 100% !important;
    gap: 10px;
    margin-top: 20px;
  }

  .sb-mobile-account > a,
  .sb-mobile-account > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 8px;
    background: #fff;
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
  }

  .sb-mobile-account > :last-child {
    border-color: #1d1d1f;
    background: #1d1d1f;
    color: #fff;
  }

  body.sb-mobile-menu-open { overflow: hidden !important; }

  .site-footer .footer-top,
  .usc-footer .footer-top,
  .modern-footer .footer-top,
  .sb-global-footer .footer-top {
    display: block !important;
    margin-bottom: 22px !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  .site-footer .footer-brand,
  .usc-footer .footer-brand,
  .modern-footer .footer-brand,
  .sb-global-footer .footer-brand {
    margin-bottom: 22px !important;
  }

  .site-footer .footer-col,
  .usc-footer .footer-col,
  .modern-footer .footer-col,
  .sb-global-footer .footer-col {
    border-top: 1px solid rgba(0,0,0,.16) !important;
  }

  .site-footer .footer-col:last-child,
  .usc-footer .footer-col:last-child,
  .modern-footer .footer-col:last-child,
  .sb-global-footer .footer-col:last-child {
    border-bottom: 1px solid rgba(0,0,0,.16) !important;
  }

  .site-footer .footer-col > h4,
  .site-footer .footer-col > .footer-col-heading,
  .usc-footer .footer-col > h4,
  .usc-footer .footer-col > .footer-col-heading,
  .modern-footer .footer-col > h4,
  .modern-footer .footer-col > .footer-col-heading,
  .sb-global-footer .footer-col > h4,
  .sb-global-footer .footer-col > .footer-col-heading {
    display: none !important;
  }

  .site-footer .footer-col-toggle,
  .usc-footer .footer-col-toggle,
  .modern-footer .footer-col-toggle,
  .sb-global-footer .footer-col-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 44px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #1d1d1f !important;
    font: inherit !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    cursor: pointer !important;
  }

  .site-footer .footer-col-toggle h4,
  .usc-footer .footer-col-toggle h4,
  .modern-footer .footer-col-toggle h4,
  .sb-global-footer .footer-col-toggle h4 {
    display: block !important;
    margin: 0 !important;
    color: inherit !important;
    font: inherit !important;
    letter-spacing: inherit !important;
    text-transform: none !important;
  }

  .site-footer .footer-chevron,
  .usc-footer .footer-chevron,
  .modern-footer .footer-chevron,
  .sb-global-footer .footer-chevron {
    position: relative !important;
    display: block !important;
    width: 10px !important;
    height: 10px !important;
    flex: 0 0 10px !important;
    transform: none !important;
    transition: transform .25s ease !important;
  }

  .site-footer .footer-chevron::before,
  .site-footer .footer-chevron::after,
  .usc-footer .footer-chevron::before,
  .usc-footer .footer-chevron::after,
  .modern-footer .footer-chevron::before,
  .modern-footer .footer-chevron::after,
  .sb-global-footer .footer-chevron::before,
  .sb-global-footer .footer-chevron::after {
    content: "" !important;
    position: absolute !important;
    top: 4px !important;
    left: 1px !important;
    width: 8px !important;
    height: 1px !important;
    background: currentColor !important;
  }

  .site-footer .footer-chevron::after,
  .usc-footer .footer-chevron::after,
  .modern-footer .footer-chevron::after,
  .sb-global-footer .footer-chevron::after {
    transform: rotate(90deg) !important;
  }

  .site-footer .footer-chevron > *,
  .usc-footer .footer-chevron > *,
  .modern-footer .footer-chevron > *,
  .sb-global-footer .footer-chevron > * {
    display: none !important;
  }

  .site-footer .footer-col-toggle[aria-expanded="true"] .footer-chevron,
  .usc-footer .footer-col-toggle[aria-expanded="true"] .footer-chevron,
  .modern-footer .footer-col-toggle[aria-expanded="true"] .footer-chevron,
  .sb-global-footer .footer-col-toggle[aria-expanded="true"] .footer-chevron {
    transform: rotate(45deg) !important;
  }

  .site-footer .footer-col > ul,
  .usc-footer .footer-col > ul,
  .modern-footer .footer-col > ul,
  .sb-global-footer .footer-col > ul {
    display: flex !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transition: max-height .32s cubic-bezier(.22,1,.36,1), opacity .2s ease, padding .25s ease !important;
  }

  .site-footer .footer-col.open > ul,
  .usc-footer .footer-col.open > ul,
  .modern-footer .footer-col.open > ul,
  .sb-global-footer .footer-col.open > ul {
    max-height: 420px !important;
    padding: 0 0 14px !important;
    opacity: 1 !important;
  }

  .site-footer .footer-col > ul a,
  .usc-footer .footer-col > ul a,
  .modern-footer .footer-col > ul a,
  .sb-global-footer .footer-col > ul a {
    display: block !important;
    padding: 7px 14px !important;
    font-size: 12px !important;
  }
  .site-footer.sb-apple-footer,
  .usc-footer.sb-apple-footer,
  .modern-footer.sb-apple-footer,
  .sb-global-footer.sb-apple-footer {
    margin-top: 0 !important;
    padding: 18px 0 22px !important;
    border-top: 0 !important;
    background: #fff !important;
    background-image: none !important;
    box-shadow: none !important;
    color: #1d1d1f !important;
  }

  .site-footer.sb-apple-footer > .wrap,
  .usc-footer.sb-apple-footer > .wrap,
  .modern-footer.sb-apple-footer > .wrap,
  .sb-global-footer.sb-apple-footer > .wrap,
  .site-footer.sb-apple-footer .wrap,
  .usc-footer.sb-apple-footer .wrap,
  .modern-footer.sb-apple-footer .wrap,
  .sb-global-footer.sb-apple-footer .wrap {
    width: 100% !important;
    max-width: none !important;
    padding-left: 26px !important;
    padding-right: 8px !important;
  }

  .site-footer.sb-apple-footer .footer-top,
  .usc-footer.sb-apple-footer .footer-top,
  .modern-footer.sb-apple-footer .footer-top,
  .sb-global-footer.sb-apple-footer .footer-top,
  .usc-footer.sb-apple-footer .usc-footer-inner {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
  }

  .site-footer.sb-apple-footer .footer-brand,
  .usc-footer.sb-apple-footer .footer-brand,
  .modern-footer.sb-apple-footer .footer-brand,
  .sb-global-footer.sb-apple-footer .footer-brand {
    margin: 0 0 14px !important;
  }

  .site-footer.sb-apple-footer .footer-col,
  .usc-footer.sb-apple-footer .footer-col,
  .modern-footer.sb-apple-footer .footer-col,
  .sb-global-footer.sb-apple-footer .footer-col {
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 0 !important;
    border-bottom: 1px solid #d2d2d7 !important;
    background: transparent !important;
  }

  .site-footer.sb-apple-footer .footer-col > h4,
  .site-footer.sb-apple-footer .footer-col > .footer-col-heading,
  .usc-footer.sb-apple-footer .footer-col > h4,
  .usc-footer.sb-apple-footer .footer-col > .footer-col-heading,
  .modern-footer.sb-apple-footer .footer-col > h4,
  .modern-footer.sb-apple-footer .footer-col > .footer-col-heading,
  .sb-global-footer.sb-apple-footer .footer-col > h4,
  .sb-global-footer.sb-apple-footer .footer-col > .footer-col-heading {
    display: none !important;
  }

  .site-footer.sb-apple-footer .footer-col-toggle,
  .usc-footer.sb-apple-footer .footer-col-toggle,
  .modern-footer.sb-apple-footer .footer-col-toggle,
  .sb-global-footer.sb-apple-footer .footer-col-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 37px !important;
    padding: 0 4px 0 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #1d1d1f !important;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    text-align: left !important;
    cursor: pointer !important;
  }

  .site-footer.sb-apple-footer .sb-footer-toggle-label,
  .usc-footer.sb-apple-footer .sb-footer-toggle-label,
  .modern-footer.sb-apple-footer .sb-footer-toggle-label,
  .sb-global-footer.sb-apple-footer .sb-footer-toggle-label {
    display: block !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .site-footer.sb-apple-footer .footer-chevron,
  .usc-footer.sb-apple-footer .footer-chevron,
  .modern-footer.sb-apple-footer .footer-chevron,
  .sb-global-footer.sb-apple-footer .footer-chevron {
    position: relative !important;
    display: block !important;
    width: 11px !important;
    height: 11px !important;
    flex: 0 0 11px !important;
    color: #1d1d1f !important;
    transform: none !important;
    transition: transform .22s ease !important;
  }

  .site-footer.sb-apple-footer .footer-chevron::before,
  .site-footer.sb-apple-footer .footer-chevron::after,
  .usc-footer.sb-apple-footer .footer-chevron::before,
  .usc-footer.sb-apple-footer .footer-chevron::after,
  .modern-footer.sb-apple-footer .footer-chevron::before,
  .modern-footer.sb-apple-footer .footer-chevron::after,
  .sb-global-footer.sb-apple-footer .footer-chevron::before,
  .sb-global-footer.sb-apple-footer .footer-chevron::after {
    content: "" !important;
    position: absolute !important;
    top: 5px !important;
    left: 1px !important;
    width: 9px !important;
    height: 1px !important;
    background: currentColor !important;
  }

  .site-footer.sb-apple-footer .footer-chevron::after,
  .usc-footer.sb-apple-footer .footer-chevron::after,
  .modern-footer.sb-apple-footer .footer-chevron::after,
  .sb-global-footer.sb-apple-footer .footer-chevron::after {
    transform: rotate(90deg) !important;
  }

  .site-footer.sb-apple-footer .footer-col-toggle[aria-expanded="true"] .footer-chevron,
  .usc-footer.sb-apple-footer .footer-col-toggle[aria-expanded="true"] .footer-chevron,
  .modern-footer.sb-apple-footer .footer-col-toggle[aria-expanded="true"] .footer-chevron,
  .sb-global-footer.sb-apple-footer .footer-col-toggle[aria-expanded="true"] .footer-chevron {
    transform: rotate(45deg) !important;
  }

  .site-footer.sb-apple-footer .footer-col > ul,
  .usc-footer.sb-apple-footer .footer-col > ul,
  .modern-footer.sb-apple-footer .footer-col > ul,
  .sb-global-footer.sb-apple-footer .footer-col > ul {
    display: flex !important;
    flex-direction: column !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    list-style: none !important;
    transition: max-height .28s ease, opacity .18s ease, padding .22s ease !important;
  }

  .site-footer.sb-apple-footer .footer-col.open > ul,
  .usc-footer.sb-apple-footer .footer-col.open > ul,
  .modern-footer.sb-apple-footer .footer-col.open > ul,
  .sb-global-footer.sb-apple-footer .footer-col.open > ul {
    max-height: 480px !important;
    padding: 0 0 12px 14px !important;
    opacity: 1 !important;
  }

  .site-footer.sb-apple-footer .footer-col > ul li,
  .usc-footer.sb-apple-footer .footer-col > ul li,
  .modern-footer.sb-apple-footer .footer-col > ul li,
  .sb-global-footer.sb-apple-footer .footer-col > ul li {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .site-footer.sb-apple-footer .footer-col > ul a,
  .usc-footer.sb-apple-footer .footer-col > ul a,
  .modern-footer.sb-apple-footer .footer-col > ul a,
  .sb-global-footer.sb-apple-footer .footer-col > ul a {
    display: block !important;
    padding: 6px 0 !important;
    color: #424245 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.33337 !important;
    text-decoration: none !important;
  }

  .site-footer.sb-apple-footer .footer-col > ul a:hover,
  .usc-footer.sb-apple-footer .footer-col > ul a:hover,
  .modern-footer.sb-apple-footer .footer-col > ul a:hover,
  .sb-global-footer.sb-apple-footer .footer-col > ul a:hover {
    color: #1d1d1f !important;
    text-decoration: underline !important;
  }

  .site-footer.sb-apple-footer .footer-bottom,
  .usc-footer.sb-apple-footer .footer-bottom,
  .modern-footer.sb-apple-footer .footer-bottom,
  .sb-global-footer.sb-apple-footer .footer-bottom {
    display: block !important;
    padding-top: 16px !important;
    border-top: 0 !important;
    color: #6e6e73 !important;
  }
}