/* Навигация */

.top-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background-color: white;
  border-bottom: 1px solid #EFEFF4;
  height: 50px;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.balance-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.balance-text {
  font-size: 16px;
  font-weight: 700;
  color: #FFBB38;
  line-height: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-action-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.nav-action-item img {
  width: 32px;
  height: 32px;
}

.nav-action-item .text-xs {
  font-size: 14px;
  line-height: 24px;
}

.exit-button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  background-color: #4318FF;
  transition: background-color 0.2s;
}

.exit-button img {
  width: 16px;
  height: 16px;
}

.bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background-color: white;
  border-top: 1px solid #EFEFF4;
  padding: 8px 16px;
  z-index: 100;
}

.navbar-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.lang-selector {
  display: flex;
  gap: 8px;
}

.lang-button {
  width: 43px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-button.active {
  background-color: #F4F7FE;
  color: #4318FF;
}

.lang-button.inactive {
  background-color: white;
  color: #718EBF;
  font-weight: 500;
}

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

.navbar-actions {
  display: flex;
  flex-direction: row;
}

.navbar-action-buttons {
  display: flex;
  gap: 8px;
}

.call-button {
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: black;
  cursor: pointer;
  transition: all 0.2s;
}

.call-button:hover {
  background-color: #3a14e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67, 24, 255, 0.3);
}

.nav-contact-button {
  flex-direction: row;
  width: 95px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #4318FF;
  border: 1px solid #EFEFF4;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.3;
}

.nav-contact-button:hover {
  background-color: #E5E7EB;
  transform: translateY(-2px);
}

.nav-contact-button img {
  width: 16px;
  height: 16px;
}

.nav-contact-button span {
  font-size: 12px;
  color: white;
  font-weight: 500;
}

.nav-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.nav-btn:hover {
  background-color: #F8F9FA;
}

.nav-btn img {
  width: 24px;
  height: 24px;
}
