nav.customer-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  font-family: "Poppins", sans-serif;
  background: #fff8f0;
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  height: 70px;
  box-sizing: border-box;
}

nav.customer-nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6em;
  font-weight: bold;
  color: #552915;
  text-decoration: none;
  flex-shrink: 0; 
}
nav.customer-nav .logo img {
  width: 40px;
  height: auto;
}

nav.customer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
}

nav.customer-nav ul li {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 700;
  color: #552915;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

nav.customer-nav ul li a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

nav.customer-nav ul li i {
  font-size: 1.1em;
  color: inherit;
}

nav.customer-nav ul li:hover {
  background: #a65b35;
  color: #fff8f0;
}

nav.customer-nav ul li:hover i {
  color: #fff8f0;
}


@media (max-width: 768px) {
  nav.customer-nav {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: auto;
  }

  nav.customer-nav ul {
    flex-direction: row; 
    gap: 15px;
    margin-top: 0;
    width: auto;
    flex-wrap: wrap;
  }

  nav.customer-nav ul li {
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  nav.customer-nav {
    padding: 10px 15px;
  }
  nav.customer-nav .logo {
    font-size: 1.3em;
  }
  nav.customer-nav ul li {
    font-size: 0.9em;
    padding: 6px 8px;
  }
}
