
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    display: none; /* Hidden by default, will be shown only on mobile */
  }
  
  .mobile-bottom-nav__item {
    flex: 1;
    text-align: center;
  }
  
  .mobile-bottom-nav__item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 5px 0;
  }
  
  .mobile-bottom-nav__item-content i {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }
  
  .mobile-bottom-nav__item.active .mobile-bottom-nav__item-content {
    color: #0d6efd; /* Bootstrap primary color */
  }
  .cart-icon-container-mb {
    position: relative;
    display: inline-block;
  }
  
  .cart-count-mb-btm {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    min-width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    font-weight: bold;
  }
  /* Add padding to the body to prevent content from being hidden behind the navigation on mobile */
  @media (max-width: 767.98px) {
    body {
      padding-bottom: 70px;
    }
    
    .mobile-bottom-nav {
      display: flex; /* Show only on mobile screens */
    }
  }