.bottom-nav{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  border-top: 1px solid #ddd;
  z-index: 999;
}

.bottom-nav button{
  background: none;
  border: none;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
}

.bottom-nav i{
  font-size: 18px;
  margin-bottom: 2px;
}

/* CART BADGE */
.cart-nav{
  position: relative;
}

#cartBadgeNav{
  position: absolute;
  top: -4px;
  right: -6px;
  background: red;
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 50%;
}

/* DESKTOP HIDE */
@media(min-width:768px){
  .bottom-nav{
    display: none;
  }
}

@media(max-width:768px){

    .header{
    padding: 8px 10px;
  }

  .header-right{
    display: flex;
    gap: 4px;
  }

  .orders-btn,
  .logout-btn,
  .cart-btn{
    font-size: 11px;
    padding: 4px 8px;
  }

}

.quick-add{
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 6px;
  border-radius: 6px;
  width: 100%;
  margin-top: 5px;
}

.cart-bar{
  position: fixed;
  bottom: 60px;
  left: 10px;
  right: 10px;
  background: #111;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  z-index: 999;
}

.cart-bar button{
  background: #16a34a;
  border: none;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
}
button{
  min-height: 40px;
}

input, textarea{
  font-size: 16px; /* zoom issue fix */
}

/* ONLY small mobile */
@media(max-width:600px){
  .header-right{
    display: none;
  }
}

/* tablet adjust */
@media(max-width:768px){
  .orders-btn,
  .logout-btn{
    font-size: 11px;
    padding: 5px 8px;
  }
}

