.button-navi-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  z-index: 9999;
}

.button-navi-bar .bn-item {
  flex: 1;
  text-align: center;
  color: #000;
  font-size: 12px;
  text-decoration: none;
}

.button-navi-bar .bn-item i {
  font-size: 20px;
  display: block;
  margin-bottom: 2px;
}

.bn-cart {
  position: relative;
}

.bn-cart-badge {
    background-color: red;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;  /* Ako treba da stoji preko ikonice */
    top: -6px;
    right: 22px;
}


@media(min-width: 980px) {
  .button-navi-bar {
    display: none !important;
  }
}
/* Wishlist aktivno srce */
/* Prazno srce */
#bn-wishlist-icon {
    color: gray; /* default boja */
    transition: color 0.2s ease;
}

/* Aktivno srce kada ima proizvoda u wishlisti */
#bn-wishlist-icon.bn-heart-active {
    color: red !important;
}