.bt-catnav {
  --bt-navy: #0e1726;
  --bt-red: #f5324f;
  --bt-red-dark: #df1f3d;
  --bt-border: #dfe5ee;
  --bt-text: #080d20;
  background: #fff;
  border-top: 1px solid var(--bt-border);
  border-bottom: 1px solid var(--bt-border);
  position: relative;
  z-index: 40;
}

.bt-custom-menu-bar {
  align-items: center;
  display: flex;
  gap: 16px;
  min-height: 56px;
}

.bt-all-categories {
  align-items: center;
  background: var(--bt-red);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(245, 50, 79, .24);
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  height: 42px;
  justify-content: center;
  min-width: 0;
  padding: 0 20px;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.bt-all-categories:hover,
.bt-all-categories:focus {
  background: var(--bt-red-dark);
  box-shadow: 0 10px 22px rgba(223, 31, 61, .3);
  color: #fff;
  transform: translateY(-1px);
}

.bt-all-categories[aria-expanded="true"] {
  background: var(--bt-red-dark);
  box-shadow: inset 0 2px 5px rgba(6, 10, 20, .16);
  transform: translateY(0);
}

.bt-all-categories .material-icons {
  font-size: 22px;
  line-height: 1;
}

@media (min-width: 992px) {
  .bt-catnav .bt-custom-menu-bar > .bt-all-categories {
    align-self: center !important;
    border-radius: 999px !important;
    height: 42px !important;
    min-height: 0 !important;
    padding: 0 20px !important;
    width: auto !important;
  }
}

.bt-custom-tabs {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 28px;
  list-style: none;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.bt-custom-tabs a {
  align-items: center;
  color: var(--bt-text);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 6px;
  line-height: 1.2;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.bt-custom-tabs a:hover {
  color: var(--bt-red);
}

.bt-custom-tabs .material-icons {
  color: var(--bt-red);
  font-size: 18px;
  margin-right: 4px;
}

.bt-hot {
  align-items: center;
  background: var(--bt-red);
  border-radius: 999px;
  box-sizing: border-box;
  color: #fff;
  display: inline-flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px !important;
  font-weight: 800 !important;
  height: 13px;
  justify-content: center;
  line-height: 13px !important;
  min-width: 28px;
  padding: 1px 7px 0;
  position: static;
  transform: none;
  vertical-align: middle;
}

.bt-menu-backdrop {
  background: rgba(6, 10, 20, .56);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10030;
}

.bt-category-panel {
  background: #fff;
  border-radius: 12px !important;
  box-shadow: 0 20px 50px rgba(6, 10, 20, .26);
  clip-path: inset(0 round 12px);
  display: none;
  left: 50vw;
  max-width: 1380px;
  overflow: hidden;
  position: fixed;
  top: 50vh;
  transform: translate(-50%, -50%);
  width: min(1380px, calc(100vw - 28px));
  z-index: 10060;
}

.bt-catnav.is-open .bt-category-panel,
.bt-catnav.is-open .bt-category-panel[hidden] {
  display: block !important;
}

.bt-catnav.is-open .bt-menu-backdrop,
.bt-catnav.is-open .bt-menu-backdrop[hidden] {
  display: block !important;
}

.bt-mobile-panel-head {
  display: none;
}

.bt-category-shell {
  background: #fff;
  border-radius: inherit;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  height: min(760px, calc(100vh - 48px));
  min-height: 0;
}

.bt-category-rail {
  background: #fff;
  border-right: 1px solid var(--bt-border);
  overflow-y: auto;
}

.bt-category-root {
  align-items: center;
  border-bottom: 1px solid var(--bt-border);
  color: var(--bt-text);
  display: grid;
  font-size: 14px;
  font-weight: 700;
  grid-template-columns: 54px minmax(0, 1fr);
  min-height: 50px;
  overflow: hidden;
  text-decoration: none;
}

.bt-category-root:hover,
.bt-category-root:focus,
.bt-category-root.is-active {
  background: #f1f3f7;
  color: var(--bt-red);
}

.bt-category-root > .bt-category-label {
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 0 12px 0 14px;
}

.bt-mobile-chevron,
.bt-mobile-pages {
  display: none;
}

.bt-category-icon {
  align-items: center;
  align-self: stretch;
  display: flex;
  justify-content: center;
  width: 54px;
}

.bt-category-icon .material-icons,
.bt-category-icon i {
  color: #111827;
  font-size: 29px;
  line-height: 1;
}

.bt-category-icon img {
  display: block;
  height: 28px;
  object-fit: contain;
  width: 28px;
}

.bt-category-mega {
  overflow: auto;
  padding: 26px 40px 38px;
}

.bt-category-title {
  color: var(--bt-text);
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  text-decoration: none;
}

.bt-category-grid {
  column-count: 4;
  column-gap: 62px;
  display: block;
}

.bt-category-column {
  break-inside: avoid;
  display: block;
  margin: 0 0 18px;
  min-width: 0;
  page-break-inside: avoid;
}

.bt-category-column-title {
  color: #020a33 !important;
  display: block;
  font-size: 14px;
  font-weight: 800 !important;
  line-height: 1.25;
  margin: 0 0 6px !important;
  min-width: 0;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  white-space: normal !important;
  word-break: normal;
  text-decoration: none;
}

.bt-category-child-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 !important;
  padding: 0 !important;
}

.bt-category-child-row,
.bt-category-grandchild-row {
  display: block !important;
  height: auto !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0;
  padding: 0 !important;
}

.bt-category-extra[hidden] {
  display: none !important;
}

.bt-category-column .bt-category-child-link {
  color: #9aa3b2 !important;
  display: block;
  font-size: 13px;
  font-weight: 400 !important;
  height: auto !important;
  line-height: 1.22 !important;
  margin: 0 !important;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-decoration: none;
  white-space: normal !important;
  word-break: normal;
}

.bt-category-column-title,
.bt-category-column-title:visited {
  color: #020a33 !important;
  font-size: 14px;
}

.bt-category-sublist {
  border-left: 0;
  margin: 2px 0 5px 0 !important;
  padding-left: 10px !important;
}

.bt-category-sublist .bt-category-grandchild-link {
  color: #aeb5c2 !important;
  display: block;
  font-size: 12px;
  font-weight: 400 !important;
  line-height: 1.22 !important;
  margin: 0 !important;
  white-space: normal !important;
}

.bt-category-more {
  background: transparent;
  border: 0;
  color: var(--bt-red);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  margin: 4px 0 0;
  padding: 0;
  text-align: left;
}

.bt-category-more:hover,
.bt-category-more:focus {
  color: var(--bt-red-dark);
  text-decoration: underline;
}

.bt-category-column .bt-category-child-link:hover,
.bt-category-sublist .bt-category-grandchild-link:hover,
.bt-category-title:hover,
.bt-category-column-title:hover {
  color: var(--bt-red) !important;
}

.bt-category-empty {
  color: #647084;
  font-size: 14px;
}

html.bt-menu-lock,
body.bt-menu-lock {
  height: 100%;
  overflow: hidden !important;
  overscroll-behavior: none;
}

body.bt-menu-lock {
  left: 0;
  position: fixed;
  right: 0;
  width: 100%;
}

@media (max-width: 991px) {
  .bt-custom-menu-bar {
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .bt-all-categories {
    width: 100%;
  }

  .bt-custom-tabs {
    display: none;
  }

  .bt-menu-backdrop {
    display: none;
  }

  body.bt-menu-lock .headerCtaSloganWrapper {
    display: none !important;
  }

  .bt-category-panel {
    border-radius: 0 !important;
    clip-path: none;
    bottom: 0 !important;
    box-shadow: none;
    height: 100vh !important;
    left: 0 !important;
    max-height: none !important;
    max-width: none !important;
    overflow: hidden;
    position: fixed;
    right: 0 !important;
    top: 0 !important;
    transform: none !important;
    width: 100vw !important;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  .bt-mobile-panel-head {
    align-items: center;
    background: var(--bt-navy);
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: 800;
    height: 72px;
    justify-content: space-between;
    padding: 0 28px;
    width: 100%;
  }

  .bt-menu-close {
    align-items: center;
    background: transparent;
    border: 0;
    color: #fff;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    padding: 0;
    width: 44px;
  }

  .bt-menu-close .material-icons {
    font-size: 34px;
  }

  .bt-category-shell {
    display: block;
    height: calc(100vh - 72px);
    max-height: none;
    min-height: 0;
    position: relative;
  }

  .bt-category-rail {
    border-right: 0;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .bt-category-root {
    background: #fff;
    grid-template-columns: 64px minmax(0, 1fr) 46px;
    min-height: 58px;
    padding-right: 24px;
  }

  .bt-category-root:hover,
  .bt-category-root:focus,
  .bt-category-root.is-active {
    background: #fff;
  }

  .bt-category-icon {
    width: 64px;
  }

  .bt-category-root .bt-category-label {
    padding-left: 22px;
  }

  .bt-mobile-chevron {
    color: #0e1726;
    display: block;
    font-size: 24px;
    justify-self: end;
  }

  .bt-mobile-pages {
    display: block;
  }

  .bt-mobile-page {
    background: #fff;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
  }

  .bt-mobile-back {
    align-items: center;
    background: #f3f6fb;
    border: 0;
    border-bottom: 1px solid var(--bt-border);
    color: #0e1726;
    display: grid;
    font-size: 15px;
    font-weight: 800;
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 56px;
    padding: 0 18px 0 6px;
    text-align: left;
    width: 100%;
  }

  .bt-mobile-back .material-icons {
    font-size: 30px;
  }

  .bt-mobile-back span {
    overflow-wrap: anywhere;
  }

  .bt-mobile-list {
    background: #fff;
  }

  .bt-mobile-row {
    align-items: center;
    border-bottom: 1px solid var(--bt-border);
    color: #0e1726;
    display: grid;
    font-size: 15px;
    font-weight: 700;
    grid-template-columns: minmax(0, 1fr) 46px;
    min-height: 58px;
    padding: 0 24px 0 28px;
    text-decoration: none;
  }

  .bt-mobile-row span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .bt-mobile-row .material-icons {
    color: #0e1726;
    font-size: 24px;
    justify-self: end;
  }

  .bt-mobile-row:hover,
  .bt-mobile-row:focus {
    color: var(--bt-red);
  }

  .bt-category-mega {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .bt-category-grid {
    column-count: 3;
  }
}
