.wallet-bottom-nav-wrapper {
  height: 60px;
  width: 100%;
  background: var(--color-primary-strong);
  display: flex;
}

.wallet-bottom-nav {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary-strong);
}

.wallet-bottom-nav-item {
  flex: 1 1 0;
  display: flex;
}

.wallet-bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  height: 100%;
  padding: 0.35rem 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: var(--color-primary);
  font-size: 0.75rem;
  line-height: 1.1;
  font-weight: 600;
  border: 0;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.wallet-bottom-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.wallet-bottom-nav-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.wallet-bottom-nav-label {
  font-weight: 500;
}

.wallet-bottom-nav-link:hover,
.wallet-bottom-nav-link:focus {
  background-color: var(--color-primary-strong);
  color: #fff;
}

.wallet-bottom-nav-link.active {
  background-color: var(--color-success);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--color-success-soft);
}

.wallet-bottom-nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 75, 135, 0.35);
}

@media (max-width: 576px) {
  .wallet-bottom-nav-link {
    font-size: 0.7rem;
    padding: 0.25rem 0;
    gap: 0.25rem;
  }

  .wallet-bottom-nav-icon {
    font-size: 1.25rem;
  }

  .wallet-bottom-nav-icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }
}

.wallet-tab-bar.nav-tabs {
  position: sticky;
  top: 0;
  z-index: 1030;
  border: 0;
  background: var(--color-primary-strong);
  border-radius: var(--radius-md);
  padding: 0.35rem;
  gap: 0.5rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-5);
}

.wallet-tab-bar .nav-item {
  flex: 1 1 0;
}

.wallet-tab-bar .nav-link {
  width: 100%;
  border: 0;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
}

.wallet-tab-bar .nav-link:hover,
.wallet-tab-bar .nav-link:focus {
  background: var(--color-primary-strong);
  color: #fff;
}

.wallet-tab-bar .nav-link.active {
  background: var(--color-success);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--color-success-soft);
}

.wallet-tab-bar .nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 75, 135, 0.35);
}

@media (max-width: 576px) {
  .wallet-tab-bar .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.65rem;
  }
}
