.sk-mobile-nav,
.sk-mobile-nav-backdrop {
  display: none;
}

@media (max-width: 48rem) {
  body.sk-mobile-menu-open {
    overflow: hidden;
  }

  .sk-header {
    z-index: 1001;
  }

  .sk-header .sk-container {
    width: calc(100% - 1rem);
  }

  .sk-header-inner {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr) auto;
    gap: 0.5rem;
    min-height: 4.25rem;
  }

  .sk-nav-toggle {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
  }

  .sk-nav-toggle span {
    width: 1.15rem;
    transition: transform var(--sk-duration-fast) var(--sk-ease-standard), opacity var(--sk-duration-fast) var(--sk-ease-standard);
  }

  .sk-nav-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(0.375rem) rotate(45deg);
  }

  .sk-nav-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
  }

  .sk-nav-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-0.375rem) rotate(-45deg);
  }

  .sk-header-logo {
    display: flex;
    min-width: 0;
    justify-self: center;
  }

  .sk-header-logo img {
    display: block;
    width: auto;
    max-width: min(8.5rem, 36vw);
    max-height: 2.35rem;
    object-fit: contain;
  }

  .sk-nav {
    display: none !important;
  }

  .sk-header-icons {
    gap: 0.25rem;
  }

  .sk-header-icons .sk-account-menu {
    display: none;
  }

  .sk-header-icons .sk-icon-link {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0;
  }

  .sk-header-icons .sk-icon-link svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .sk-header-icons .sk-cart-link {
    border-color: color-mix(in srgb, var(--sk-color-primary) 35%, white);
    background: var(--sk-color-surface-muted);
    color: var(--sk-color-primary);
  }

  .sk-mobile-nav {
    position: fixed;
    z-index: 1003;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    width: min(22.5rem, 90vw);
    max-width: 100%;
    visibility: hidden;
    flex-direction: column;
    overflow: hidden;
    transform: translateX(-102%);
    background: var(--sk-color-surface);
    box-shadow: var(--sk-shadow-lg);
    opacity: 0;
    transition: transform var(--sk-duration-slow) var(--sk-ease-standard), opacity var(--sk-duration-fast) var(--sk-ease-standard), visibility var(--sk-duration-slow);
  }

  .sk-mobile-nav.open {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
  }

  .sk-mobile-nav,
  .sk-mobile-nav * {
    box-sizing: border-box;
  }

  .sk-mobile-nav__header {
    display: flex;
    min-height: 4.5rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: var(--sk-space-2);
    padding: 0 var(--sk-space-2);
    border-bottom: 0.0625rem solid var(--sk-color-border);
  }

  .sk-mobile-nav__title {
    color: var(--sk-color-text);
    font-size: var(--sk-font-size-sm);
    font-weight: var(--sk-font-weight-bold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .sk-mobile-nav__close {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 2.75rem;
    place-items: center;
    padding: 0;
    border: 0.0625rem solid var(--sk-color-border);
    border-radius: var(--sk-radius-full);
    background: var(--sk-color-surface);
    color: var(--sk-color-text);
    cursor: pointer;
  }

  .sk-mobile-nav__close svg {
    width: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
  }

  .sk-mobile-nav__body {
    min-width: 0;
    flex: 1 1 auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: var(--sk-space-1) var(--sk-space-2) max(var(--sk-space-3), env(safe-area-inset-bottom));
  }

  .sk-mobile-nav__list,
  .sk-mobile-nav__list ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .sk-mobile-nav__list > li {
    border-bottom: 0.0625rem solid var(--sk-color-border);
  }

  .sk-mobile-nav__list > li > a,
  .sk-mobile-disclosure > button {
    display: flex;
    width: 100%;
    min-height: 3.25rem;
    align-items: center;
    justify-content: space-between;
    gap: var(--sk-space-1);
    padding: 0.65rem 0.25rem;
    border: 0;
    background: transparent;
    color: var(--sk-color-text);
    cursor: pointer;
    font: inherit;
    font-size: 0.95rem;
    font-weight: var(--sk-font-weight-medium);
    text-align: left;
    text-decoration: none;
  }

  .sk-mobile-nav__list > li:first-child > a {
    color: var(--sk-color-primary);
    font-weight: var(--sk-font-weight-bold);
  }

  .sk-mobile-disclosure > button svg {
    width: 0.75rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    transition: transform var(--sk-duration-fast) var(--sk-ease-standard);
  }

  .sk-mobile-disclosure.open > button {
    color: var(--sk-color-primary);
  }

  .sk-mobile-disclosure.open > button svg {
    transform: rotate(180deg);
  }

  .sk-mobile-disclosure ul[hidden] {
    display: none;
  }

  .sk-mobile-disclosure ul {
    padding: 0 0 var(--sk-space-1) var(--sk-space-2);
  }

  .sk-mobile-disclosure li a {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    padding: 0.5rem var(--sk-space-1);
    border-left: 0.125rem solid var(--sk-color-border);
    color: var(--sk-color-text-muted);
    font-size: var(--sk-font-size-sm);
    line-height: 1.35;
    text-decoration: none;
  }

  .sk-mobile-disclosure li a:hover,
  .sk-mobile-disclosure li a:focus-visible {
    border-left-color: var(--sk-color-primary);
    background: var(--sk-color-surface-muted);
    color: var(--sk-color-primary);
  }

  .sk-mobile-account {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--sk-space-1);
    margin-top: var(--sk-space-2);
    padding: var(--sk-space-2);
    border-radius: var(--sk-radius-md);
    background: var(--sk-color-primary);
    color: var(--sk-color-primary-contrast);
    text-decoration: none;
  }

  .sk-mobile-account:hover,
  .sk-mobile-account:focus-visible {
    color: var(--sk-color-primary-contrast);
  }

  .sk-mobile-account svg {
    width: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .sk-mobile-account strong,
  .sk-mobile-account small {
    display: block;
  }

  .sk-mobile-account small {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
  }

  .sk-mobile-account i {
    font-style: normal;
  }

  .sk-mobile-nav-backdrop {
    position: fixed;
    z-index: 1002;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(11, 19, 43, 0.58);
    cursor: pointer;
    backdrop-filter: blur(0.125rem);
  }

  .sk-mobile-nav-backdrop[hidden] {
    display: none;
  }

  .sk-search-overlay {
    z-index: 1100;
  }

  .sk-search-panel {
    padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  }

  .sk-search-input-wrap input[type='search'] {
    font-size: 1rem;
  }
}

@media (max-width: 23.5rem) {
  .sk-header .sk-container {
    width: calc(100% - 0.75rem);
  }

  .sk-header-inner {
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    gap: 0.25rem;
  }

  .sk-header-icons .sk-icon-link,
  .sk-nav-toggle {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }

  .sk-header-logo img {
    max-width: 6.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sk-mobile-nav,
  .sk-nav-toggle span,
  .sk-mobile-disclosure > button svg {
    transition: none;
  }
}
