#app-nav {
  width: 100%;
  height: 100px;
  position: relative;
}

.floating-nav {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 100px;
  display: flex;
  position: fixed;
  align-items: center;
  flex-direction: row;
  padding: 0.4rem 2rem;
  box-sizing: border-box;
  background-color: #df5778;
  justify-content: space-between;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.5);
}

.toggle-button {
  width: 30px;
  row-gap: 4px;
  display: none;
  flex-direction: column;
}

.toggle-button span {
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background-color: white;
}

.logo img {
  width: 8rem;
}

.navbar-right {
  display: flex;
  column-gap: 4rem;
  align-items: center;
  justify-content: center;
}

.navbarLinks {
  display: flex;
  column-gap: 2rem;
}

.navbarLinks a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  font-family: "CustomFont2";
}

.navbarLinks a:hover {
  color: #ddd;
}

.cartLogoBox {
  position: relative;
  font-family: "CustomFont";
}

.cartLogoBox img {
  width: 2rem;
}

.redCircle {
  width: 10px;
  height: 10px;
  background-color: #e54a28;
  position: absolute;
  top: 5%;
  right: 1%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 3px;
  font-size: 10px;
  box-shadow: 0px 3px 4px 0px #3e3e3e;
}

.cartLogoBox:hover {
  cursor: pointer;
}

@media screen and (max-width: 768px) {

  .navbarLinks {
    display: none;
  }

  .toggle-button {
    display: flex;
  }
  
  .navbarLinks.active {
    top: 4rem;
    left: 2rem;
    display: flex;
    color: black;
    row-gap: .32rem;
    padding: 1rem 2rem;
    position: absolute;
    border-radius: 8px;
    align-items: start;
    flex-direction: column;
    background-color: white;
    box-shadow: 0px 3px 4px 0px #3e3e3e;
  }

  .navbarLinks.active a {
    color: black;
    font-weight: 700;
  }
}