/* BOTTOM NAV */
  .bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    display: flex;
    border-radius: 18px 18px 0 0;
    height: 68px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    z-index: 1000;
  }

  .nav-item {
    flex: 1;
    text-align: center;
    padding: 11px 0;
    color: var(--light);
    cursor: pointer;
    transition: all .3s;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }

  .nav-item i {
    font-size: 19px;
  }

  .nav-item.active {
    color: var(--blue);
    font-weight: 700;
  }

  .nav-item:hover {
    color: var(--teal);
  }

  