.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.logoContainer {
  flex: none;
  width: fit-content;
}

.searchContainer {
  flex: none;
  width: fit-content;
}

.mobileMenuBtn {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.hamburger {
  display: flex;
  flex-direction: column;
  width: 25px;
  gap: 5px;
}

.hamburgerBar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: 0.3s;
}

.hamburgerActive span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburgerActive span:nth-child(2) {
  opacity: 0;
}

.hamburgerActive span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobileMenuWrapper {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: white;
  transition: transform 0.3s ease-in-out;
  z-index: 999;
  overflow-y: auto;
}

.mobileMenuHidden {
  transform: translateX(-100%);
}

.mobileMenuVisible {
  transform: translateX(0);
}

.mobileNavList {
  list-style: none;
  padding: 20px;
}

.mobileNavItem {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.mobileNavLink {
  color: #333;
  font-size: 16px;
  text-decoration: none;
  display: block;
}