header {
  background: #fff;
  border-bottom: 1px solid #c9a06c;
  padding: 10px 20px;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo img {
  height: 65px;
}

nav.desktop-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  background: #f1ebeb;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  z-index: 99;
}

nav.desktop-nav a,
.mobile-menu a {
  text-decoration: none;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.menu-toggle {
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 15px;
  background: #feecd5;
  padding: 20px;
}

.mobile-menu a {
  padding: 10px 0;
  border-bottom: 1px solid #d4af7f;
}

/* Responsive */
@media (max-width: 768px) {
  nav.desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
  }
.header-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    /* max-width: 1200px; */
    /* gap: 130px; */
    /* margin: auto; */
    padding: 0 20px;
}
}