@media(max-width:768px){
  body {
    padding-bottom: 65px;
  }
}

.bw-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f1f1f1;
  display: flex;
  justify-content: space-around;
  align-items: center;f
  border-top: 1px solid #ddd;
  z-index: 999999;
  height: 60px;
  padding-top: 6px;
}


/* item */
.bw-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  color: #6f6f6f;
  text-decoration: none;
}

/* icon */
.bw-item i {
  color: #7a7a7a;
  align-items: center;
  display: block;
  margin: 0 auto;   /* ini kunci center horizontal */
  font-size: 15px;
  margin-bottom: 4px;
  text-align: center;
}

/* text */
.bw-item span:last-child {
 font-size: 12px;
 line-height: 1;
}

/* badge */
.bw-cart {
  position: relative;
}

.bw-badge {
  position: absolute;
  top: 2px;
  right: 32%;
  background: #9CAF88;
  color: #fff;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 10px;
  line-height: 1.2;
  top: 2px;
  right: -6px; /* penting: jangan pakai % */
}

/* active (biar kayak gambar) */
.bw-item:active,
.bw-item.active {
  color: #000;
}

.bw-item:active i {
  color: #000;
}

/* desktop hide */
@media(min-width:768px){
  .bw-nav {
    display: none !important;
  }
}
