/* Premium mobile navigation drawer. Desktop navigation is intentionally untouched. */
.kangoo-mobile-nav {
  display: none;
}

html.kangoo-a11y-text-larger {
  font-size: 112.5%;
}

html.kangoo-a11y-text-bigger {
  font-size: 125%;
}

html.kangoo-a11y-text-spacing body {
  letter-spacing: 0.055em;
  line-height: 1.65;
  word-spacing: 0.12em;
}

html.kangoo-a11y-high-contrast body {
  background: #fff !important;
  color: #000 !important;
}

html.kangoo-a11y-high-contrast a {
  color: #003f9e !important;
  text-decoration-thickness: 2px;
}

html.kangoo-a11y-highlight-links a {
  border-radius: 3px;
  outline: 2px solid #f2a900 !important;
  outline-offset: 2px;
  text-decoration: underline !important;
}

html.kangoo-a11y-readable-font body,
html.kangoo-a11y-readable-font button,
html.kangoo-a11y-readable-font input,
html.kangoo-a11y-readable-font select,
html.kangoo-a11y-readable-font textarea {
  font-family: Arial, Helvetica, sans-serif !important;
}

html.kangoo-a11y-monochrome body > *:not(.kangoo-mobile-nav) {
  filter: grayscale(1);
}

html.kangoo-a11y-reduce-motion *,
html.kangoo-a11y-reduce-motion *::before,
html.kangoo-a11y-reduce-motion *::after {
  scroll-behavior: auto !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

html.kangoo-a11y-stop-animations *,
html.kangoo-a11y-stop-animations *::before,
html.kangoo-a11y-stop-animations *::after {
  animation-play-state: paused !important;
}

html.kangoo-a11y-large-cursor,
html.kangoo-a11y-large-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'%3E%3Cpath d='M4 2l24 20-12 1-6 10z' fill='white' stroke='black' stroke-width='2'/%3E%3C/svg%3E") 4 2, auto !important;
}

html.kangoo-a11y-focus-outline *:focus,
html.kangoo-a11y-focus-outline *:focus-visible {
  outline: 3px solid #1167db !important;
  outline-offset: 3px !important;
}

@media (max-width: 1023px) {
  .kangoo-mobile-nav {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10060 !important;
    display: block !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .kangoo-mobile-nav.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .kangoo-mobile-nav__overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 0 !important;
    background: rgba(15, 23, 42, 0.58) !important;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }

  body .kangoo-mobile-nav__panel {
    --mobile-nav-blue: #1167db;
    --mobile-nav-ink: #172033;
    --mobile-nav-muted: #697386;
    --mobile-nav-line: #e2e7ee;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 1 !important;
    width: min(100vw, 520px) !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: max(clamp(15px, 4vw, 24px), env(safe-area-inset-top))
      max(clamp(15px, 4vw, 24px), env(safe-area-inset-right))
      max(clamp(15px, 4vw, 24px), env(safe-area-inset-bottom))
      max(clamp(15px, 4vw, 24px), env(safe-area-inset-left)) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    scrollbar-width: auto;
    scrollbar-color: var(--mobile-nav-blue) #eaf2fc;
    scrollbar-gutter: stable;
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: var(--mobile-nav-ink) !important;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.3) !important;
    transform: translate3d(calc(100% + 32px), 0, 0) !important;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .kangoo-mobile-nav.is-open .kangoo-mobile-nav__panel {
    transform: translate3d(0, 0, 0) !important;
  }

  .kangoo-mobile-nav__panel::-webkit-scrollbar {
    width: 6px;
  }

  .kangoo-mobile-nav__panel::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--mobile-nav-blue);
  }

  .kangoo-mobile-nav__panel::-webkit-scrollbar-track {
    background: #eaf2fc;
  }

  .kangoo-mobile-nav__scrollbar {
    position: fixed;
    top: max(4px, env(safe-area-inset-top));
    right: 1px;
    bottom: max(4px, env(safe-area-inset-bottom));
    z-index: 3;
    display: block;
    width: 4px;
    border-radius: 999px;
    background: #eaf2fc;
    pointer-events: none;
  }

  .kangoo-mobile-nav__scrollbar-thumb {
    display: block;
    width: 100%;
    min-height: 44px;
    border-radius: inherit;
    background: #1167db;
    box-shadow: 0 0 0 1px rgba(17, 103, 219, 0.1);
    transform: translate3d(0, 0, 0);
    transition: height 120ms ease;
  }

  .kangoo-mobile-nav__panel *,
  .kangoo-mobile-nav__panel *::before,
  .kangoo-mobile-nav__panel *::after {
    box-sizing: border-box;
  }

  .kangoo-mobile-nav__panel a {
    color: inherit;
    text-decoration: none;
  }

  .kangoo-mobile-nav__sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
  }

  .kangoo-mobile-nav__icon {
    display: block;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .kangoo-mobile-nav__top {
    display: flex;
    align-items: center;
    gap: clamp(9px, 2.5vw, 16px);
    min-height: 54px;
    margin-bottom: clamp(22px, 6vw, 30px);
  }

  .kangoo-mobile-nav__logo {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
  }

  .kangoo-mobile-nav__logo picture {
    display: block;
    width: min(100%, 190px);
  }

  .kangoo-mobile-nav__logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .kangoo-mobile-nav__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: clamp(6px, 2vw, 11px);
  }

  body .kangoo-mobile-nav__action {
    position: relative;
    display: grid;
    width: clamp(40px, 11vw, 48px);
    height: clamp(40px, 11vw, 48px);
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    place-items: center;
    border: 1px solid #dce2ea;
    border-radius: 50%;
    background: #fff;
    color: #182235;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .kangoo-mobile-nav__action .kangoo-mobile-nav__icon {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
  }

  .kangoo-mobile-nav__cart-count {
    position: absolute;
    top: -7px;
    right: -4px;
    display: grid;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--mobile-nav-blue);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
  }

  .kangoo-mobile-nav__brand-strip {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    overflow-x: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .kangoo-mobile-nav__brand-strip::-webkit-scrollbar {
    display: none;
  }

  body .kangoo-mobile-nav__brand {
    display: grid;
    min-height: 88px;
    padding: 7px 3px 8px;
    align-content: center;
    justify-items: center;
    gap: 6px;
    scroll-snap-align: start;
    border: 1px solid var(--mobile-nav-line);
    border-radius: 17px;
    background: #fff;
    color: var(--mobile-nav-ink);
    font-size: 0.74rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.025);
  }

  .kangoo-mobile-nav__brand img {
    display: block;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 50%;
    object-fit: contain;
  }

  .kangoo-mobile-nav__brand--all .kangoo-mobile-nav__icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    stroke-width: 1.55;
  }

  .kangoo-mobile-nav__primary {
    display: block;
    margin: 0 0 20px;
    overflow: hidden;
    border: 1px solid var(--mobile-nav-line);
    border-radius: 18px;
    background: #fff;
  }

  body .kangoo-mobile-nav__row {
    position: relative;
    display: grid !important;
    min-height: 61px;
    margin: 0 !important;
    padding: 12px 18px !important;
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 14px;
    border: 0 !important;
    border-bottom: 1px solid var(--mobile-nav-line) !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: var(--mobile-nav-ink) !important;
    font-size: clamp(0.93rem, 4vw, 1.02rem);
    font-weight: 600;
    line-height: 1.2;
    list-style: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .kangoo-mobile-nav__primary > :last-child,
  .kangoo-mobile-nav__primary > :last-child > .kangoo-mobile-nav__row {
    border-bottom: 0 !important;
  }

  .kangoo-mobile-nav__row::-webkit-details-marker {
    display: none;
  }

  .kangoo-mobile-nav__row::marker {
    content: "";
  }

  body .kangoo-mobile-nav__row.is-active {
    background: linear-gradient(90deg, #edf6ff 0%, #f8fbff 100%) !important;
    color: var(--mobile-nav-blue) !important;
  }

  .kangoo-mobile-nav__row.is-active > .kangoo-mobile-nav__icon:first-child {
    fill: currentColor;
    stroke: currentColor;
  }

  .kangoo-mobile-nav__row:nth-child(4) > .kangoo-mobile-nav__icon:first-child {
    color: #f2a900;
  }

  .kangoo-mobile-nav__chevron {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    justify-self: end;
    stroke-width: 2.2;
    transition: transform 180ms ease;
  }

  .kangoo-mobile-nav__details {
    margin: 0;
    border: 0;
    background: #fff;
  }

  .kangoo-mobile-nav__details[open] > summary {
    color: var(--mobile-nav-blue) !important;
    background: #f8fbff !important;
  }

  .kangoo-mobile-nav__details[open] > summary .kangoo-mobile-nav__chevron {
    transform: rotate(90deg);
  }

  .kangoo-mobile-nav__subgrid {
    display: grid;
    padding: 12px 14px 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border-bottom: 1px solid var(--mobile-nav-line);
    background: #f8fafc;
  }

  body .kangoo-mobile-nav__subgrid a {
    display: grid;
    min-height: 44px;
    padding: 8px 10px;
    align-content: center;
    gap: 2px;
    border: 1px solid #e1e7ef;
    border-radius: 11px;
    background: #fff;
    color: var(--mobile-nav-ink);
    font-size: 0.79rem;
    font-weight: 700;
    line-height: 1.2;
  }

  body .kangoo-mobile-nav__subgrid--brands a,
  body .kangoo-mobile-nav__subgrid--flavours a {
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
  }

  .kangoo-mobile-nav__subgrid--brands img,
  .kangoo-mobile-nav__subgrid--flavours img {
    display: block;
    width: 34px;
    height: 34px;
    margin: 0;
    border-radius: 50%;
    object-fit: contain;
  }

  .kangoo-mobile-nav__subgrid small {
    color: var(--mobile-nav-muted);
    font-size: 0.68rem;
    font-weight: 500;
  }

  .kangoo-mobile-nav__benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 20px;
  }

  .kangoo-mobile-nav__benefit {
    display: grid;
    min-height: 91px;
    padding: 14px;
    grid-template-columns: 31px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    border: 1px solid #e0e9f5;
    border-radius: 16px;
    background: linear-gradient(135deg, #f1f7ff 0%, #fbfdff 100%);
    color: var(--mobile-nav-blue);
  }

  .kangoo-mobile-nav__benefit--rated {
    color: #f2a900;
  }

  .kangoo-mobile-nav__benefit .kangoo-mobile-nav__icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .kangoo-mobile-nav__benefit span {
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  .kangoo-mobile-nav__benefit strong {
    color: inherit;
    font-size: clamp(0.81rem, 3.6vw, 0.95rem);
    line-height: 1.15;
  }

  .kangoo-mobile-nav__benefit small {
    color: var(--mobile-nav-muted);
    font-size: clamp(0.7rem, 3vw, 0.82rem);
    line-height: 1.28;
  }

  .kangoo-mobile-nav__more {
    margin: 0 0 20px;
    padding: 17px 18px 0;
    overflow: hidden;
    border: 1px solid var(--mobile-nav-line);
    border-radius: 17px;
    background: #fff;
  }

  .kangoo-mobile-nav__more h3 {
    margin: 0 0 7px;
    color: var(--mobile-nav-muted);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0;
  }

  body .kangoo-mobile-nav__more > a {
    display: grid;
    min-height: 65px;
    padding: 10px 0;
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--mobile-nav-line);
    color: var(--mobile-nav-ink);
  }

  body .kangoo-mobile-nav__more > a:last-child {
    border-bottom: 0;
  }

  .kangoo-mobile-nav__more > a > span {
    display: grid;
    gap: 3px;
  }

  .kangoo-mobile-nav__more strong {
    font-size: 0.94rem;
    line-height: 1.15;
  }

  .kangoo-mobile-nav__more small {
    color: var(--mobile-nav-muted);
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .kangoo-mobile-nav__footer-controls {
    position: sticky;
    bottom: 0;
    z-index: 4;
    display: grid;
    min-height: 73px;
    padding: 12px 14px;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 0.82fr);
    align-items: center;
    gap: 13px;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    background: #fbfcfe;
    box-shadow: 0 -9px 18px rgba(255, 255, 255, 0.94);
  }

  body .kangoo-mobile-nav__theme,
  .kangoo-mobile-nav__language {
    display: grid;
    min-width: 0;
    padding: 0;
    grid-template-columns: 23px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    border: 0;
    background: transparent;
    color: var(--mobile-nav-ink);
    font: inherit;
    font-size: 0.86rem;
    text-align: left;
  }

  body .kangoo-mobile-nav__language {
    cursor: pointer;
    font-size: 0.76rem;
    gap: 6px;
  }

  body .kangoo-mobile-nav__theme {
    cursor: pointer;
  }

  .kangoo-mobile-nav__footer-controls .kangoo-mobile-nav__icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .kangoo-mobile-nav__switch {
    position: relative;
    display: block;
    width: 43px;
    height: 25px;
    border-radius: 999px;
    background: #d1d6dd;
    transition: background 180ms ease;
  }

  .kangoo-mobile-nav__switch > span {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.2);
    transition: transform 180ms ease;
  }

  .kangoo-mobile-nav__switch.is-on {
    background: var(--mobile-nav-blue);
  }

  .kangoo-mobile-nav__switch.is-on > span {
    transform: translateX(18px);
  }

  .kangoo-mobile-nav__footer-divider {
    width: 1px;
    height: 35px;
    background: var(--mobile-nav-line);
  }

  .kangoo-mobile-nav__language {
    grid-template-columns: 23px minmax(0, 1fr) 14px;
  }

  .kangoo-mobile-nav__language-chevron {
    width: 14px !important;
    height: 14px !important;
    flex-basis: 14px !important;
    transform: rotate(90deg);
  }

  body .kangoo-mobile-nav__panel.is-accessibility-open {
    overflow: hidden !important;
  }

  .kangoo-mobile-nav__accessibility {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: block;
    padding: max(15px, env(safe-area-inset-top))
      max(15px, env(safe-area-inset-right))
      max(18px, env(safe-area-inset-bottom))
      max(15px, env(safe-area-inset-left));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    color: #172033;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  }

  .kangoo-mobile-nav__accessibility.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .kangoo-mobile-nav__accessibility-header {
    display: flex;
    min-height: 42px;
    margin: 0 0 12px;
    align-items: center;
    justify-content: space-between;
  }

  body .kangoo-mobile-nav__accessibility-nav {
    display: grid;
    width: 38px;
    height: 38px;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    place-items: center;
    border: 1px solid #e1e7ef;
    border-radius: 50%;
    background: #fff;
    color: #172033;
    cursor: pointer;
  }

  .kangoo-mobile-nav__accessibility-nav .kangoo-mobile-nav__icon {
    width: 19px;
    height: 19px;
  }

  .kangoo-mobile-nav__accessibility-title {
    display: grid;
    margin: 0 -15px 14px;
    padding: 0 15px 16px;
    grid-template-columns: 45px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    border-bottom: 1px solid #e6ebf1;
  }

  .kangoo-mobile-nav__accessibility-mark {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 50%;
    background: #1167db;
    color: #fff;
  }

  .kangoo-mobile-nav__accessibility-mark .kangoo-mobile-nav__icon {
    width: 24px;
    height: 24px;
  }

  .kangoo-mobile-nav__accessibility-title > span:last-child {
    display: grid;
    gap: 3px;
  }

  .kangoo-mobile-nav__accessibility-title strong {
    font-size: 1rem;
    line-height: 1.15;
  }

  .kangoo-mobile-nav__accessibility-title small {
    color: #697386;
    font-size: 0.72rem;
  }

  .kangoo-mobile-nav__accessibility-section {
    margin: 0 0 16px;
  }

  .kangoo-mobile-nav__accessibility-section h3 {
    margin: 0 0 8px;
    color: #303a4b;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: none;
  }

  .kangoo-mobile-nav__accessibility-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body .kangoo-mobile-nav__accessibility-grid > button {
    display: grid;
    min-width: 0;
    min-height: 76px;
    margin: 0;
    padding: 9px 4px;
    place-items: center;
    align-content: center;
    gap: 7px;
    border: 1px solid #dde4ed;
    border-radius: 11px;
    background: #fff;
    color: #172033;
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    cursor: pointer;
  }

  body .kangoo-mobile-nav__accessibility-grid > button.is-active {
    border-color: #1167db;
    background: #eff6ff;
    color: #0d5fc9;
    box-shadow: 0 0 0 1px rgba(17, 103, 219, 0.12);
  }

  .kangoo-mobile-nav__accessibility-grid .kangoo-mobile-nav__icon {
    width: 23px;
    height: 23px;
  }

  .kangoo-mobile-nav__accessibility-list {
    overflow: hidden;
    border: 1px solid #e2e7ee;
    border-radius: 12px;
    background: #fff;
  }

  body .kangoo-mobile-nav__accessibility-row {
    display: grid;
    width: 100%;
    min-width: 0;
    min-height: 57px;
    margin: 0;
    padding: 10px 12px;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #e2e7ee;
    border-radius: 12px;
    background: #fff;
    color: #172033;
    font-size: 0.75rem;
    text-align: left;
    cursor: pointer;
  }

  .kangoo-mobile-nav__accessibility-list .kangoo-mobile-nav__accessibility-row {
    border-width: 0 0 1px;
    border-radius: 0;
  }

  .kangoo-mobile-nav__accessibility-list .kangoo-mobile-nav__accessibility-row:last-child {
    border-bottom: 0;
  }

  .kangoo-mobile-nav__accessibility-row > span:nth-child(2) {
    display: grid;
    gap: 2px;
  }

  .kangoo-mobile-nav__accessibility-row strong {
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .kangoo-mobile-nav__accessibility-row small {
    color: #697386;
    font-size: 0.65rem;
    line-height: 1.2;
  }

  .kangoo-mobile-nav__accessibility-row > .kangoo-mobile-nav__icon:last-child {
    width: 15px;
    height: 15px;
  }

  .kangoo-mobile-nav__accessibility-row.is-active {
    color: #0d5fc9;
    background: #f3f8ff;
  }

  .kangoo-mobile-nav__a11y-switch {
    position: relative;
    width: 36px;
    height: 21px;
    border-radius: 999px;
    background: #cdd4dd;
    transition: background 150ms ease;
  }

  .kangoo-mobile-nav__a11y-switch > span {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.25);
    transition: transform 150ms ease;
  }

  .kangoo-mobile-nav__accessibility-row.is-active .kangoo-mobile-nav__a11y-switch {
    background: #1167db;
  }

  .kangoo-mobile-nav__accessibility-row.is-active .kangoo-mobile-nav__a11y-switch > span {
    transform: translateX(15px);
  }

  .kangoo-mobile-nav__accessibility-note {
    display: grid;
    margin: 3px 0 12px;
    padding: 10px 12px;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    background: #edf6ff;
    color: #1167db;
  }

  .kangoo-mobile-nav__accessibility-note .kangoo-mobile-nav__icon {
    width: 19px;
    height: 19px;
  }

  .kangoo-mobile-nav__accessibility-note > span {
    display: grid;
    gap: 2px;
  }

  .kangoo-mobile-nav__accessibility-note strong {
    font-size: 0.68rem;
  }

  .kangoo-mobile-nav__accessibility-note small {
    color: #607089;
    font-size: 0.62rem;
  }

  body .kangoo-mobile-nav__accessibility-reset {
    display: flex;
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 10px 14px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 9px;
    background: #1167db;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
  }

  .kangoo-mobile-nav__accessibility-reset .kangoo-mobile-nav__icon {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 380px) {
  body .kangoo-mobile-nav__panel {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    padding: max(13px, env(safe-area-inset-top))
      max(13px, env(safe-area-inset-right))
      max(13px, env(safe-area-inset-bottom))
      max(13px, env(safe-area-inset-left)) !important;
    border-radius: 0 !important;
  }

  .kangoo-mobile-nav__top {
    gap: 7px;
    margin-bottom: 20px;
  }

  .kangoo-mobile-nav__logo picture {
    width: min(100%, 135px);
  }

  body .kangoo-mobile-nav__action {
    width: 37px;
    height: 37px;
  }

  .kangoo-mobile-nav__action .kangoo-mobile-nav__icon {
    width: 20px;
    height: 20px;
  }

  .kangoo-mobile-nav__actions {
    gap: 5px;
  }

  .kangoo-mobile-nav__brand-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body .kangoo-mobile-nav__brand {
    min-height: 82px;
  }

  .kangoo-mobile-nav__brand img {
    width: 40px;
    height: 40px;
  }

  body .kangoo-mobile-nav__row {
    min-height: 57px;
    padding: 11px 14px !important;
    gap: 11px;
    font-size: 0.9rem;
  }

  .kangoo-mobile-nav__benefit {
    min-height: 84px;
    padding: 11px;
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 8px;
  }

  .kangoo-mobile-nav__benefit .kangoo-mobile-nav__icon {
    width: 25px;
    height: 25px;
  }

  .kangoo-mobile-nav__footer-controls {
    padding-inline: 10px;
    gap: 9px;
  }

  body .kangoo-mobile-nav__theme,
  .kangoo-mobile-nav__language {
    gap: 6px;
    font-size: 0.78rem;
  }

  .kangoo-mobile-nav__switch {
    width: 37px;
    height: 23px;
  }

  .kangoo-mobile-nav__switch > span {
    width: 17px;
    height: 17px;
  }

  .kangoo-mobile-nav__switch.is-on > span {
    transform: translateX(14px);
  }
}

@media (max-width: 1023px) and (max-height: 500px) {
  body .kangoo-mobile-nav__panel {
    padding: max(10px, env(safe-area-inset-top))
      max(18px, env(safe-area-inset-right))
      max(10px, env(safe-area-inset-bottom))
      max(18px, env(safe-area-inset-left)) !important;
  }

  .kangoo-mobile-nav__top {
    min-height: 42px;
    margin-bottom: 10px;
  }

  .kangoo-mobile-nav__logo picture {
    width: min(100%, 150px);
  }

  body .kangoo-mobile-nav__action {
    width: 40px;
    height: 40px;
  }

  .kangoo-mobile-nav__brand-strip {
    margin-bottom: 10px;
  }

  body .kangoo-mobile-nav__brand {
    min-height: 68px;
    padding: 5px 3px 6px;
    gap: 4px;
  }

  .kangoo-mobile-nav__brand img {
    width: 36px;
    height: 36px;
  }

  .kangoo-mobile-nav__brand--all .kangoo-mobile-nav__icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  body .kangoo-mobile-nav__row {
    min-height: 54px;
    padding-block: 10px !important;
  }

  .kangoo-mobile-nav__footer-controls {
    min-height: 58px;
    padding-block: 8px;
  }
}

@media (min-width: 1024px) {
  .kangoo-mobile-nav {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kangoo-mobile-nav,
  .kangoo-mobile-nav__panel,
  .kangoo-mobile-nav__chevron,
  .kangoo-mobile-nav__switch,
  .kangoo-mobile-nav__switch > span {
    transition-duration: 0.01ms !important;
  }
}
