.header, .header.scroll {
  max-height: auto;
  width: 100%;
  gap: 0 !important;
  position: fixed;
  left: 0;
  right: 0;
  top: 0px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
  z-index: 99;
}

.header.scroll {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: #f7ede8a2;
  box-shadow: 0px 0px 10px #86868675;
}

.header-nav {
  width: 100%;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.header-logo-cont {
  max-width: 10%;
  display: flex;
  justify-content: center !important;
  align-items: flex-start;
  gap: 0 !important;
  padding: 0;
}

.header-logo-img {
  max-width: 76px;
}

.logo-img {
  width: 6rem;
  height: 6rem;
}

.header-menu-icon-cont {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center !important;
  align-items: flex-end;
  padding: 0;
  position: relative;
}

.header-menu-items {
  max-width: 90%;
  display: flex;
  justify-content: center !important;
  align-items: flex-start;
  padding: 0;
}

.menu-items {
    width: min-content;
  list-style: none;
  display: flex;
  gap: 1rem;
}

.menu-item {
  font-size: 1rem;
  color: #ffffff;
}

.menu-item.scroll {
  color: #000000 !important;
}

.menu-item:hover {
  text-decoration: overline;
  color: inherit;
}

.cart-wrapper {
  position: relative;
}

.cart-icon,
.cart-icon.scroll {
  width: 32px;
  height: 32px;
  object-fit: contain;
  object-position: center;
  color: #ffffff;
}

.cart-icon.scroll {
  color: #e63d00;
}

.cart-icon {}

.cart-counter,
.cart-counter.scroll {
  position: absolute;
  top: -32px;
  color: #ffffff;
  font-size: 0.80rem;
  font-weight: 300;
  padding: 0;
}

.cart-counter.scroll {
  color: #e63d00;
}


.menu-icon,
.menu-icon.scroll {
  object-fit: contain;
  object-position: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.menu-icon.scroll {
  color: #e63d00;
}


@media (max-width:767px) {
  .menu-items {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .desk {
    display: none;
  }

  .header-logo-img {
    max-width: 48px;
  }
}