.burger-btn {
  display: none !important;
}

.burger-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.burger-overlay.open {
  opacity: 1;
}

.burger-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 84%;
  max-width: 330px;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}

.burger-drawer.open {
  transform: translateX(0);
}

.burger-drawer .bd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #EAEAE2;
}

.burger-drawer .bd-head .logo-svg {
  width: 54px;
  height: 54px;
}

.burger-drawer .bd-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #6B6B7A;
  font-size: 30px;
  line-height: 1;
  padding: 0 4px;
}

.burger-drawer .bd-close:hover {
  color: #FFA949;
}

.burger-drawer .bd-links {
  padding: 6px 0;
  flex: 1;
  overflow-y: auto;
}

.burger-drawer .bd-links a {
  display: block;
  text-decoration: none;
  color: #363642;
  font-size: 17px;
  padding: 16px 24px;
  border-bottom: 1px solid #F4F2EC;
}

.burger-drawer .bd-links a:hover {
  background: #FAF8F2;
  color: #003A40;
}

.burger-drawer .bd-foot {
  padding: 20px 24px;
  border-top: 1px solid #EAEAE2;
}

.burger-drawer .bd-foot .bd-login {
  display: block;
  text-align: center;
  text-decoration: none;
  background: #FFA949;
  color: #fff;
  font-weight: 700;
  padding: 13px;
  border-radius: 99px;
  font-size: 16px;
  transition: background 0.2s;
}

.burger-drawer .bd-foot .bd-login:hover {
  background: #F09838;
}

.burger-drawer .bd-foot .bd-register {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #003A40;
  font-weight: 700;
  font-size: 15px;
  margin-top: 14px;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

.burger-drawer .bd-foot .bd-register:hover {
  color: #FFA949;
}

@media (max-width: 768px) {
  .burger-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .btn-menu {
    display: none !important;
  }
}

