@media (max-width: 768px) {
  :root {
    --apx-am-teal: #0E7C7B;
    --apx-am-teal-deep: #0A5C5B;
    --apx-am-teal-tint: rgba(14,124,123,0.08);
    --apx-am-ink: #14201E;
    --apx-am-ink-2: #5A6868;
    --apx-am-ink-3: #8a9595;
    --apx-am-line: #ece8df;
    --apx-am-line-soft: #f3f1ea;
    --apx-am-surface: #fff;
    --apx-am-easing: cubic-bezier(0.32, 0.72, 0, 1)
  }
  .site-header,
  .site-header .handheld-navigation,
  .site-header .menu-toggle,
  .site-header .secondary-navigation,
  .site-header .site-branding,
  .storefront-primary-navigation {
    display: none!important
  }
  .apx-am-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(56px, 14vw, 64px);
    padding: env(safe-area-inset-top) clamp(8px, 3vw, 16px) 0 clamp(12px, 4vw, 16px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #eef0f0;
    z-index: 60;
    font-family: 'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif
  }
  .apx-am-brand {
    font-weight: 700;
    font-size: clamp(11px, 3.2vw, 14px);
    letter-spacing: 0.02em;
    color: var(--apx-am-teal);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100vw - 156px);
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 4px
  }
  .apx-am-actions {
    display: flex;
    gap: 2px;
    align-items: center;
    position: relative
  }
  .apx-am-icon,
  .apx-am-icon:active,
  .apx-am-icon:focus,
  .apx-am-icon:hover,
  a.apx-am-icon:visited {
    background: transparent!important;
    background-color: transparent!important;
    color: #0e7c7b!important;
    border: 0;
    padding: 0;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    border-radius: 12px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none
  }
  .apx-am-icon:focus-visible {
    outline: 2px solid var(--apx-am-teal-deep);
    outline-offset: -2px
  }
  .apx-am-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.1;
    stroke: #0E7C7B!important;
    color: #0e7c7b!important
  }
  .apx-am-cart {
    position: relative
  }
  .apx-am-cart-badge {
    position: absolute;
    top: 4px;
    right: 2px;
    background: var(--apx-am-teal);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 14px;
    height: 14px;
    padding: 0 4px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none
  }
  .apx-am-cart-badge.is-hidden {
    display: none
  }
  .apx-am-ham {
    position: relative;
    width: 22px;
    height: 22px;
    display: inline-block;
    transform-origin: center center
  }
  .apx-am-ham > span {
    position: absolute;
    left: 3px;
    right: 3px;
    height: 2px;
    background-color: #0e7c7b!important;
    border-radius: 1px;
    transition: transform 240ms var(--apx-am-easing),opacity 180ms ease;
    will-change: transform,opacity;
    transform: none;
    opacity: 1;
    transform-origin: center center
  }
  .apx-am-ham > span:nth-child(1) {
    top: 6px
  }
  .apx-am-ham > span:nth-child(2) {
    top: 11px
  }
  .apx-am-ham > span:nth-child(3) {
    top: 16px
  }
  body.apx-am-open .apx-am-ham > span:nth-child(1) {
    transform: translateY(5px) rotate(45deg)
  }
  body.apx-am-open .apx-am-ham > span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
  }
  body.apx-am-open .apx-am-ham > span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg)
  }
  body {
    padding-top: calc(env(safe-area-inset-top) + clamp(56px, 14vw, 64px))
  }
  .site-content,
  .woocommerce-page .content-area {
    padding-top: 0!important
  }
  .apx-am-scrim {
    position: fixed;
    top: calc(env(safe-area-inset-top) + clamp(56px, 14vw, 64px));
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    background: transparent;
    pointer-events: none;
    transition: background 220ms var(--apx-am-easing)
  }
  .apx-am-scrim[hidden] {
    display: none
  }
  body.apx-am-open .apx-am-scrim {
    background: rgba(20,32,30,0.08);
    pointer-events: auto
  }
  .apx-am-menu {
    position: fixed;
    top: calc(env(safe-area-inset-top) + clamp(60px, 15vw, 68px));
    right: clamp(8px, 3vw, 16px);
    width: clamp(264px, calc(100vw - 24px), 320px);
    max-height: calc(100dvh - env(safe-area-inset-top) - clamp(72px, 16vw, 84px) - 16px);
    background: var(--apx-am-surface);
    border-radius: 18px;
    box-shadow: 0 24px 50px -8px rgba(20,32,30,0.18),0 2px 6px rgba(20,32,30,0.06),0 0 0 0.5px rgba(20,32,30,0.06);
    z-index: 90;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 200ms var(--apx-am-easing),transform 240ms var(--apx-am-easing);
    pointer-events: none;
    overflow: hidden;
    font-family: 'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color: var(--apx-am-ink);
    display: flex;
    flex-direction: column
  }
  .apx-am-menu[hidden] {
    display: none
  }
  body.apx-am-open .apx-am-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto
  }
  .apx-am-menu .menu-acct {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: clamp(10px, 2.5vw, 12px) clamp(12px, 3.5vw, 14px);
    background: linear-gradient(180deg, #fafaf7 0, #fff 100%);
    border-bottom: 1px solid var(--apx-am-line-soft);
    text-decoration: none;
    color: inherit;
    flex: 0 0 auto
  }
  .apx-am-menu .menu-acct__av {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--apx-am-teal);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 13px;
    flex: 0 0 36px
  }
  .apx-am-menu .menu-acct__main {
    flex: 1;
    min-width: 0
  }
  .apx-am-menu .menu-acct__name {
    font-size: clamp(12px, 3.4vw, 13px);
    font-weight: 600;
    color: var(--apx-am-ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }
  .apx-am-menu .menu-acct__sub {
    font-size: clamp(10px, 2.8vw, 11px);
    color: var(--apx-am-ink-2);
    margin-top: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }
  .apx-am-menu .menu-acct__chev {
    color: var(--apx-am-ink-3);
    flex: 0 0 16px
  }
  .apx-am-menu .menu-nav {
    padding: 6px;
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch
  }
  .apx-am-menu .menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0
  }
  .apx-am-menu .menu-nav a,
  .apx-am-menu .menu-nav button {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--apx-am-ink);
    text-decoration: none;
    font: inherit;
    font-size: clamp(13px, 3.6vw, 14px);
    font-weight: 500;
    text-align: left;
    border-radius: 10px;
    transition: background 140ms ease;
    min-height: 44px
  }
  .apx-am-menu .menu-nav a:hover,
  .apx-am-menu .menu-nav button:hover {
    background: rgba(20,32,30,0.04)
  }
  .apx-am-menu .menu-nav a:active,
  .apx-am-menu .menu-nav button:active {
    background: rgba(20,32,30,0.07)
  }
  .apx-am-menu .menu-nav a.is-active {
    background: var(--apx-am-teal-tint);
    color: var(--apx-am-teal-deep);
    font-weight: 600
  }
  .apx-am-menu .menu-nav a:focus-visible,
  .apx-am-menu .menu-nav button:focus-visible {
    outline: 2px solid var(--apx-am-teal-deep);
    outline-offset: -2px
  }
  .apx-am-menu .badge {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    flex: 0 0 30px;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.10)
  }
  .apx-am-menu .badge svg {
    width: 17px;
    height: 17px
  }
  .apx-am-menu .badge.home {
    background: #f39112
  }
  .apx-am-menu .badge.shop {
    background: #2bae5b
  }
  .apx-am-menu .badge.calc {
    background: #1f73e8
  }
  .apx-am-menu .badge.res {
    background: #5856d6
  }
  .apx-am-menu .badge.about {
    background: #b0541f
  }
  .apx-am-menu .badge.cont {
    background: #8c3fbe
  }
  .apx-am-menu .badge.coa {
    background: #0E7C7B
  }
  .apx-am-menu .menu-nav .spacer {
    flex: 1
  }
  .apx-am-menu .menu-nav .meta {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(14,124,123,0.10);
    color: var(--apx-am-teal-deep);
    letter-spacing: 0.02em
  }
  .apx-am-menu .menu-nav .chev {
    color: var(--apx-am-ink-3);
    transition: transform 200ms var(--apx-am-easing)
  }
  .apx-am-menu .menu-nav button[aria-expanded="true"] .chev {
    transform: rotate(90deg);
    color: var(--apx-am-teal)
  }
  .apx-am-menu .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms var(--apx-am-easing)
  }
  .apx-am-menu .menu-nav button[aria-expanded="true"] + .submenu {
    max-height: clamp(220px, 40dvh, 320px)
  }
  .apx-am-menu .submenu ul {
    padding: 2px 0 6px
  }
  .apx-am-menu .submenu a {
    padding-left: 52px;
    font-size: clamp(12px, 3.4vw, 13px);
    font-weight: 400;
    color: var(--apx-am-ink-2)
  }
  .apx-am-menu .submenu a:hover {
    background: rgba(20,32,30,0.03);
    color: var(--apx-am-ink)
  }
  .apx-am-menu .menu-foot {
    padding: 10px clamp(12px, 3.5vw, 14px);
    border-top: 1px solid var(--apx-am-line-soft);
    background: #fafaf7;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: clamp(10px, 2.8vw, 11px);
    color: var(--apx-am-ink-3);
    flex: 0 0 auto;
    gap: 8px
  }
  .apx-am-menu .menu-foot strong {
    color: var(--apx-am-ink-2);
    font-weight: 600
  }
  @media (prefers-reduced-motion: reduce) {
    .apx-am-ham > span,
    .apx-am-menu,
    .apx-am-scrim {
      transition: opacity 100ms linear!important;
      transform: none!important
    }
    .apx-am-menu {
      opacity: 0;
      visibility: hidden;
      transform: none!important
    }
    body.apx-am-open .apx-am-menu {
      opacity: 1;
      visibility: visible
    }
  }
  body.apx-am-open {
    
  }
}
@media (min-width: 769px) {
  .apx-am-header,
  .apx-am-menu,
  .apx-am-scrim,
  .apx-am-search {
    display: none!important
  }
}
@media (max-width: 768px) {
  .apx-am-search {
    display: flex;
    position: fixed !important;
    top: calc(env(safe-area-inset-top, 0px) + clamp(56px, 14vw, 64px));
    left: 0;
    right: 0;
    z-index: 95;
    gap: 8px;
    padding: 10px clamp(8px, 3vw, 16px);
    box-sizing: border-box;
    background: var(--apx-am-surface);
    border-bottom: 1px solid var(--apx-am-line);
    box-shadow: 0 10px 24px rgba(20, 32, 30, 0.14);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 200ms var(--apx-am-easing), transform 240ms var(--apx-am-easing), visibility 0s linear 240ms;
  }
  body.apx-am-search-open .apx-am-search {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 200ms var(--apx-am-easing), transform 240ms var(--apx-am-easing);
  }
  .apx-am-search .search-field {
    flex: 1 1 auto;
    min-width: 0;
    height: 44px;
    font-size: 16px;
    padding: 0 14px;
    box-sizing: border-box;
    border: 1.5px solid var(--apx-am-teal);
    border-radius: 10px;
    color: var(--apx-am-ink);
    background: #fff;
    -webkit-appearance: none;
  }
  .apx-am-search .search-field:focus {
    outline: 2px solid var(--apx-am-teal-deep);
    outline-offset: 1px;
  }
  .apx-am-search-go {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background-color: var(--apx-am-teal);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='M21 21l-4.35-4.35'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    cursor: pointer;
    -webkit-appearance: none;
  }
  .apx-am-search .apx-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border: 1px solid var(--apx-am-line);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(20, 32, 30, 0.18);
    max-height: 56vh;
    overflow-y: auto;
    z-index: 96;
  }
  .apx-am-search .apx-search-hit {
    display: block;
    padding: 13px 16px;
    color: var(--apx-am-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--apx-am-line-soft);
    font-size: 15px;
    line-height: 1.3;
  }
  .apx-am-search .apx-search-hit:last-child {
    border-bottom: none;
  }
  .apx-am-search .apx-search-hit:active {
    background: var(--apx-am-teal-tint);
  }
  .apx-am-search .apx-search-empty {
    padding: 14px 16px;
    color: var(--apx-am-ink-2);
    font-size: 14px;
  }
  body.apx-am-search-open .apx-am-scrim {
    background: rgba(20, 32, 30, 0.42);
  }
}