.mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 6px 8px;
  background: var(--mb-bg, #ffffff);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
  border-top: 1px solid var(--mb-border, rgba(0, 0, 0, 0.06));
  z-index: 1200;
}

.mobile-bottom-bar .mobile-bottom-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  line-height: 1.2;
  color: var(--mb-text, #1c1c1c);
  text-decoration: none;
}

.mobile-bottom-bar .mobile-bottom-item i {
  font-size: 20px;
  line-height: 1;
}

.mobile-bottom-bar .cart-icon-wrap {
  position: relative;
  display: inline-block;
}

.mobile-bottom-bar .cart-products-count {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: #f44336;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  display: none;
}

.mobile-bottom-bar .cart-products-count.is-visible {
  display: inline-block;
}

.mobile-bottom-bar .mobile-bottom-item:active,
.mobile-bottom-bar .mobile-bottom-item:focus,
.mobile-bottom-bar .mobile-bottom-item:hover {
  color: var(--mb-hover, #00c293);
}

@media (max-width: 991px) {
  body.has-mobile-bottom-bar .pp_stick_it {
    padding-bottom: 76px;
  }
  body.has-mobile-bottom-bar .cart-grid-right,
  body.has-mobile-bottom-bar .cart-detailed-actions {
    padding-bottom: 76px;
  }
  body.side_open .side_menu {
    transform: translate3d(0, 0, 0) !important;
  }
}

body.side_open .mobile-bottom-bar {
  z-index: 1800;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media (max-width: 991px) {
  body.has-mobile-bottom-bar main {
    padding-bottom: 76px;
  }
}
