  /* Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  display: flex;
  z-index: 999;
}

.mobile-bottom-nav .nav-item {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #666;
  font-size: 11px;
  padding-top: 6px;
  position: relative;
}

.mobile-bottom-nav .nav-item i {
  font-size: 22px;
  display: block;
  line-height: 1;
}

.mobile-bottom-nav .nav-item.active {
  color: #d63384;
}

/* Green label for Cart */
.nav-item .label {
  position: absolute;
  top: 2px;
  right: 15px;
  background: #28a745;
  color: #fff;
  font-size: 10px;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 600;
}

/* Sign In Bar */
.mobile-signin {
  position: fixed;
  bottom: 60px; /* above bottom nav */
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 998;
}
.cart-badge {
  position: absolute;
  top: 1px;
  right: 30px;
  background: #ef4444; /* red */
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 50%;
}