body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff; /* Changed from black to white */
  color: #000;
  padding: 15px 20px;
}

.nav-left,
.nav-center,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
  gap: 20px;
}

.nav-title {
  font-size: 18px;
  font-weight: 600;
  color: black; /* Changed from white to black */

}

.nav-icon {
  width: 20px;
  height: 20px;
  filter: invert(1); /* Makes dark icons white */
  cursor: pointer;
}
.profile-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.cart-icon {
  width: 28px; /* Increased from 20px */
  height: 28px;
  cursor: pointer;
}
