.notice-bar-message {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #465160;
  height: 2rem;
  z-index: 10;
}
.notice-bar-message p {
  font-size: 0.8rem;
  /* font-weight: bold; */
  color: white;
}

.header-parent {
  display: inline;
}

.header {
  position: relative;
  display: flex;
  /* flex-direction: row; */
  width: 100%;
  padding: min(5vw, 20px) min(5vw, 50px);
  background-color: var(--colour-1);
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.header2 {
  position: relative;
  display: flex;
  /* flex-direction: row; */
  width: 100%;
  padding: min(5vw, 20px) min(5vw, 50px);
  background-color: transparent;
  /* box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.4); */
  z-index: 10;
}

.header .logo,
.header2 .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transform: translate(-50%, -50%);
}
.header .logo>img,
.header2 .logo>img {
  width: 50px;
}
.header2 .logo>img:first-child {
  display: block;
}

.header2 .logo>img:last-child {
  display: none;
}
/* -----------------------------------Sticky Header----------------------------------------------- */
.notice-bar.sticky {
  position: sticky;
  top: -1px;
  animation-name: fadein;
  animation-duration: 0.3s;
  z-index: 1;
}
.header2.sticky {
  background-color: var(--colour-1);
  color: black;
}

.header.sticky, .header2.sticky {
  position: sticky;
  top: 0;
  height: 80px;
  padding: min(5vw, 10px) min(5vw, 50px);
  animation-name: fadein;
  animation-duration: 0.3s;
  z-index: 10;
}
.header.add-notice.sticky, .header2.add-notice.sticky {
  /* top: calc(2rem - 1px);; */
}

.header.sticky .logo>img, .header2.sticky .logo>img {
  width: 40px;
}
.header2.sticky .logo>img:first-child {
  display: none;
}

.header2.sticky .logo>img:last-child {
  display: block;
}
.header .menu-links, .header2 .menu-links {
  display: none;
}

.header .menu-icons, .header2 .menu-icons {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0.5rem;
  margin: auto;
  margin-right: 0;
  padding-left: 0;
}
.menu li,
.menu-links li,
.menu-icons li{
  list-style-type: none;
}
.menu li a,
.menu-links li a,
.menu-icons li a {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: black;
}

.header2 .menu li a,
.header2 .menu-links li a,
.header2 .menu-icons li a {
  color: white;
}
.header2.sticky .menu li a,
.header2.sticky .menu-links li a,
.header2.sticky .menu-icons li a {
  color: black;
}

.menu li a:hover,
.menu-links li a:hover,
.menu-icons li a:hover {
  font-weight: 600;
  color: white;
}

.header2.sticky .menu li a:hover,
.header2.sticky .menu-links li a:hover,
.header2.sticky .menu-icons li a:hover {
  font-weight: 600;
  color: white;
}
.menu-icons i {
  position: relative;
  font-size: 1.2rem;
  font-weight: 400;
}
.menu-icons li:nth-last-child(2),
.menu-icons li:last-child {
  display: none;
}

#cart-icon .number-of-items{
  font-size: 0.37em;
  letter-spacing: 0.1px;
  text-align: center;
  color: white;
  font-style: normal;
  position: absolute;
  top: 0;
  right: -4px;
  background-color: red;
  border: 0.1em solid red;
  border-radius: 50%;
  width: 1.6em;
}

.menu-search {
  display: none;
  opacity: 0;
  inset: 0;
  bottom: 100%;
  transition: 0.5s;
}
.menu-search.active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: fixed;
  overflow-y: auto;
  opacity: 1;
  width: auto;
  height: 150px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 11;
  transition: 0.5s;
}
.menu-search.sticky.active {
  height: 80px;
}
.menu-search .menu-search-input {
  width: min(100%, 500px);
  border: 1px solid darkgrey;
  border-radius: 5px;
  font-size: 1rem;
  padding: 0.5rem;
}
.menu-search .search-button {
  font-size: 1rem;
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.menu-search .close-button {
  color: black;
  border: none;
  background: transparent;
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 2rem;
  cursor: pointer;
}

.searchbutton {
  cursor: pointer;
  background-color: unset;
  border: none;
  padding: 0;
  color: black;
}
.header2 .searchbutton {
  color: white;
}
.header2.sticky .searchbutton {
  color: black;
}
.searchbutton:hover {
  color: white;
}
/* -----------------------------------Mobile Menu----------------------------------------------- */
.overflow-hide {
  overflow: hidden;
}
.menu-left {
  align-self: center;
}
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: black;
}
.header2 .menu-toggle {
  color: white;
}
.header2.sticky .menu-toggle {
  color: black;
}
.menu-toggle:hover {
  color: var(--colour-4);
}
.mobile-menu {
  display: block;
  opacity: 0;
  inset: 0;
  right: 100%;
  transition: 0.5s;
}

.mobile-menu.active {
  position: sticky;
  height: 100vh;
  height: 100dvh;
  overflow: auto;
  overflow-y: scroll;
  inset: 0;
  opacity: 1;
  width: auto;
  background-color: rgba(191, 231, 231, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 11;
  transition: 0.5s;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu .close-button {
  display: none;
  color: black;
  position: absolute;
  top: 30px;
  right: 30px;
  border: none;
  background: transparent;
  width: 30px;
  height: 30px;
  padding: 0;
  z-index: 100;
  font-size: 2rem;
  cursor: pointer;
}

.close-button>img {
  width: 30px;
  aspect-ratio: 1;
}
.mobile-menu .close-button.active {
  display: block;
}
.mobile-menu>.menu-links {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-top: 150px;
  padding-left: 50px;
  gap: 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.active>.menu-links {
  position: relative;
}
.mobile-menu>.menu-links>li>a{
  color: black;
}
.mobile-menu>.menu-links>li>a:hover{
  color: var(--colour-4);
}
.mobile-menu .menu2 {
  padding-top: 1rem;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media screen and (min-width: 425px) {
  /* Main */
  .header .menu-links,
  .header .menu-icons,
  .header2 .menu-links,
  .header2 .menu-icons {
    gap: 0.8rem;
  }
  .menu-icons i {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .menu-icons li:nth-last-child(2),
  .menu-icons li:last-child {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .header .logo, .header2 .logo{
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    display: flex;
    align-items: center;
    width: auto;
  }
  .header .logo>img, .header2 .logo>img {
    width: 100px;
  }
  .header .menu-links, .header2 .menu-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    text-transform: uppercase;
    font-size: 0.65rem;
    padding-left: 0;
  }
  .header.sticky .menu-links {
    /* padding-left: 150px; */
  }
  .header .menu-icons, .header2 .menu-icons{
    gap: 1rem;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-menu,
  .mobile-menu.active {
    /* display: none; */
    /* position: relative;
    width: 100%; */
    overflow-y: clip;
  }
  .menu-search .close-button {
    position: absolute;
    right: 20px;
  }
}
@media screen and (min-width: 900px) {
  .header .menu-links, .header2 .menu-links {
    gap: 1.5rem;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .header .menu-links, .header2 .menu-links {
    gap: 3rem;
  }
}
@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1440px) {}
