.bm-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1240px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .bm-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .bm-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.bm-site {
  background: #fff;
  color: #14181d;
  font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.bm-site a {
  text-decoration: none;
}

.bm-site *,
.bm-site *::before,
.bm-site *::after {
  box-sizing: border-box;
}

#page {
  overflow-x: hidden;
}

.bm-site h1,
.bm-site h2,
.bm-site h3,
.bm-site p {
  overflow-wrap: anywhere;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

[data-bm-header].is-scrolled {
  border-color: #e2e2dd;
}

[data-bm-header].is-scrolled [data-bm-header-inner] {
  height: 4rem;
}

[data-bm-header].is-scrolled [data-bm-logo] {
  height: 2.5rem;
}

[data-bm-drawer] {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: block;
  width: 100vw;
  height: 100dvh;
  pointer-events: none;
}

[data-bm-drawer] > [data-bm-menu-close] {
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 48, .5);
  opacity: 0;
  transition: opacity .3s ease;
}

[data-bm-drawer-panel] {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 88%;
  max-width: 24rem;
  height: 100%;
  background: #fff;
  box-shadow: 0 24px 60px -24px rgba(11, 27, 48, .45);
  translate: 100% 0;
  transform: translateX(100%);
  transition: translate .3s ease, transform .3s ease;
}

.bm-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.75rem;
}

.bm-logo {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: .75rem;
  color: #0b1b30;
}

.bm-logo img {
  height: 3rem;
  width: auto;
  max-width: 9rem;
  object-fit: contain;
  transition: height .3s ease;
}

.bm-logo-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: .125rem;
}

.bm-logo-title {
  max-width: 13rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.bm-logo-subtitle {
  max-width: 13rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .625rem;
  font-weight: 600;
  color: #667085;
}

.bm-header-nav,
.bm-header-tools {
  display: none;
}

.bm-primary-menu,
.bm-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bm-primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
}

.bm-primary-menu > .menu-item {
  position: relative;
}

.bm-primary-menu a {
  color: #0b1b30;
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .2s ease;
}

.bm-primary-menu a:hover,
.bm-primary-menu .current-menu-item > a,
.bm-primary-menu .current-menu-ancestor > a {
  color: #d81f26;
}

.bm-primary-menu > .menu-item > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #d81f26;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.bm-primary-menu > .menu-item:hover > a::before,
.bm-primary-menu > .current-menu-item > a::before,
.bm-primary-menu > .current-menu-ancestor > a::before {
  transform: scaleX(1);
}

.bm-primary-menu .menu-item-has-children > a::after {
  content: "";
  width: .42rem;
  height: .42rem;
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-.12rem) rotate(45deg);
}

.bm-primary-menu .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 20;
  min-width: 17rem;
  margin: 0;
  padding: .55rem 0;
  list-style: none;
  border: 1px solid #e2e2dd;
  background: #fff;
  box-shadow: 0 16px 40px -24px rgba(11, 27, 48, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(.5rem);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.bm-primary-menu .menu-item:hover > .sub-menu,
.bm-primary-menu .menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(.2rem);
}

.bm-primary-menu .sub-menu a {
  display: block;
  padding: .7rem 1rem;
  color: #42526b;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.bm-primary-menu .sub-menu a:hover {
  background: #f6f4ef;
  color: #0b1b30;
}

.bm-header-mobile-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.bm-header-icon-link,
.bm-header-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid #e2e2dd;
  background: #fff;
  color: #0b1b30;
}

.bm-header-icon-link {
  color: #d81f26;
}

.bm-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #e2e2dd;
  padding: 1rem 1.25rem;
}

.bm-drawer-logo {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: .75rem;
  color: #0b1b30;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.bm-drawer-logo img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.bm-drawer-logo span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.bm-drawer-intro {
  border: 1px solid #e2e2dd;
  background: #f6f4ef;
  padding: 1rem;
}

.bm-drawer-intro p {
  margin: 0;
  color: #0b1b30;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.45;
}

.bm-drawer-contact {
  display: grid;
  gap: .5rem;
  margin-top: .85rem;
}

.bm-drawer-contact a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #42526b;
  font-size: .82rem;
  font-weight: 600;
}

.bm-mobile-nav {
  margin-top: 1.25rem;
}

.bm-mobile-menu .menu-item {
  position: relative;
  border-bottom: 1px solid rgba(226, 226, 221, .8);
}

.bm-mobile-menu a {
  display: block;
  padding: .95rem 2.75rem .95rem 0;
  color: #0b1b30;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.bm-mobile-menu .sub-menu {
  display: none;
  margin: 0 0 .75rem;
  padding: 0 0 0 .75rem;
  list-style: none;
  border-left: 2px solid #e2e2dd;
}

.bm-mobile-menu .is-sub-open > .sub-menu {
  display: block;
}

.bm-mobile-menu .sub-menu a {
  padding: .55rem .5rem;
  color: #42526b;
  font-size: .88rem;
  font-weight: 600;
  text-transform: none;
}

.bm-mobile-sub-toggle {
  position: absolute;
  top: .45rem;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  color: #667085;
}

.bm-mobile-sub-toggle::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border-bottom: 1.8px solid currentColor;
  border-right: 1.8px solid currentColor;
  transform: translateY(-.12rem) rotate(45deg);
  transition: transform .18s ease;
}

.bm-mobile-menu .is-sub-open > .bm-mobile-sub-toggle::before {
  transform: translateY(.1rem) rotate(225deg);
}

@media (min-width: 1024px) {
  .bm-logo img {
    max-width: 10.5rem;
  }

  .bm-header-nav {
    display: block;
    flex: 1 1 auto;
  }

  .bm-header-tools {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 1rem;
  }

  .bm-header-mobile-actions {
    display: none;
  }
}

@media (max-width: 639px) {
  .bm-logo {
    gap: .55rem;
  }

  .bm-logo img {
    height: 2.55rem;
    max-width: 7.5rem;
  }

  .bm-logo-title,
  .bm-logo-subtitle {
    max-width: 9.5rem;
  }
}

[data-bm-drawer].is-open {
  pointer-events: auto;
}

[data-bm-drawer].is-open [data-bm-menu-close] {
  opacity: 1;
}

[data-bm-drawer].is-open [data-bm-drawer-panel] {
  translate: 0 0;
  transform: translateX(0);
}

.bm-translator {
  min-width: 64px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: #0b1b30;
}

@media (max-width: 1023px) {
  .bm-translator {
    display: none;
  }
}

.bm-translator select,
.bm-translator .goog-te-combo {
  max-width: 120px;
  border: 1px solid #e2e2dd;
  background: #fff;
  padding: 6px 8px;
  color: #0b1b30;
  font: inherit;
}

.skiptranslate iframe,
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  line-height: 1;
}

body {
  top: 0 !important;
}

.bm-slide {
  opacity: 0;
}

.bm-slide.is-active {
  opacity: 1;
}

.bm-dot.is-active {
  width: 2rem;
  background: #d81f26;
}

.bm-partner-marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.bm-partner-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: bm-partner-scroll 30s linear infinite;
  will-change: transform;
}

.bm-partner-marquee:hover .bm-partner-track {
  animation-play-state: paused;
}

.bm-partner-logo {
  display: flex;
  width: 172px;
  height: 78px;
  flex: 0 0 172px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, .55);
}

.bm-partner-logo img {
  display: block;
  width: 100%;
  max-width: 124px;
  height: 42px;
  object-fit: contain;
}

@keyframes bm-partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .bm-partner-track {
    gap: .875rem;
    animation-duration: 24s;
  }

  .bm-partner-logo {
    width: 140px;
    height: 66px;
    flex-basis: 140px;
    padding: 13px 18px;
  }

  .bm-partner-logo img {
    max-width: 104px;
    height: 34px;
  }
}

.bm-product-card.is-hidden {
  display: none;
}

.bm-product-gallery-main {
  display: block;
  overflow: hidden;
  background: #fff;
}

.bm-product-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  height: 44px;
  width: 44px;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .88);
  color: #0b1b30;
  box-shadow: 0 10px 24px -18px rgba(11, 27, 48, .45);
  transition: background-color .2s ease, color .2s ease;
}

.bm-product-gallery-nav:hover {
  background: #d81f26;
  color: #fff;
}

.bm-product-gallery-nav.prev {
  left: .75rem;
}

.bm-product-gallery-nav.next {
  right: .75rem;
}

.bm-product-thumbs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  scroll-snap-type: x proximity;
}

.bm-product-thumbs button {
  width: calc((100% - 3rem) / 4);
  min-width: 120px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #fff;
  scroll-snap-align: start;
  transition: border-color .2s ease, opacity .2s ease;
}

.bm-product-thumbs button.is-active {
  border-color: #d81f26;
}

.bm-product-thumbs button:not(.is-active) {
  opacity: .78;
}

.bm-product-thumbs button:hover {
  opacity: 1;
}

.bm-lightbox,
.bm-product-modal {
  display: none;
}

.bm-lightbox.is-open,
.bm-product-modal.is-open {
  display: flex;
}

.bm-no-scroll {
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bm-floating-contact {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.bm-floating-button {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 52px;
  padding: .75rem 1rem;
  border-radius: 2px;
  color: #fff;
  box-shadow: 0 16px 30px -18px rgba(11, 27, 48, .45);
  transition: transform .2s ease, background-color .2s ease;
}

.bm-floating-button span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: .875rem;
  font-weight: 600;
  opacity: 0;
  transition: max-width .25s ease, opacity .25s ease;
}

.bm-floating-button:hover {
  transform: translateY(-2px);
}

.bm-floating-button:hover span {
  max-width: 150px;
  opacity: 1;
}

.bm-floating-phone {
  background: #d81f26;
}

.bm-floating-phone:hover {
  background: #b1121a;
}

.bm-floating-zalo {
  background: #0068ff;
}

.bm-mobile-contactbar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #e2e2dd;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}

.bm-mobile-contactbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .625rem .25rem;
  color: #0b1b30;
}

.bm-mobile-contactbar a + a {
  border-left: 1px solid #e2e2dd;
}

.bm-mobile-contactbar span {
  font-size: 11px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .bm-floating-contact {
    display: none;
  }

  .bm-mobile-contactbar {
    display: grid;
  }

  #glt-translate-trigger {
    bottom: 62px !important;
    right: 12px !important;
  }
}
