.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Stabilization fixes */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  background: white;
  /* Prevents content showing through */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* For iOS Safari specifically */
@supports (-webkit-overflow-scrolling: touch) {
  body {
    /* Allows momentum scrolling on iOS */
    -webkit-overflow-scrolling: touch;
  }
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #777;
  flex: 1;
}

.nav-item.active11 {
  color: #ff006a;
  font-weight: bold;
}

.iconNavBar-mob {
  width: 25%;
  margin-bottom: 3px;
}

.cart-wrapper {
  position: relative;
  top: -20px;
  background: white;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-wrapper i {
  font-size: 22px;
  color: #555;
}

.cart-text {
  position: absolute;
  bottom: -20px;
  font-size: 10px;
  color: #555;
  font-weight: bold;
}