/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
  background-color: #E1E1E1;
  box-shadow: 0 4px 6px rgba(0,0,0,0.4); /* final shadow */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;  /* keep dropdown above */
  height: 80px;
  overflow: visible;
}

/* ===== Logo ===== */
.navbar-left img {
  height: 60px;
  cursor: pointer;
  max-width: 100%;
}

#logo {
  content: url("../images/ks_logo_full.png");
  margin-top: 5px;
  height: 60px;
}
@media (max-width: 640px) {
  #logo {
    content: url("../images/ks_logo.png");
    height: 55px;
  }
}

/* ===== Dropdown ===== */
.navbar-center-left {
  position: relative;
}
.menu-btn {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid #E1E1E1;
  font-family: calibri;
  font-weight: 400;
}
.menu-btn:hover {
  border-bottom: 2px solid #000;
}
.menu-btn .arrow1 {
  width: 14px;
  margin-left: 6px;
  position: relative;
  top: -1px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 200;
}
.dropdown li {
  list-style: none;
}
.dropdown a {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  transition: background 0.2s ease-in-out;
}
.dropdown a:hover {
  background: #e5e5e5;
}
.hidden {
  display: none;
}

/* ===== Links ===== */
.navbar-center-right .nav-links {
  display: flex;
  gap: 20px;
  font-weight: 200;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
  font-weight: 400;
}
.nav-links a:hover {
  border-bottom: 2px solid #000;
}

/* ===== Cart ===== */
.navbar-right .cart-icon {
  font-size: 22px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.navbar-right .cart-icon:hover {
  color: #444;
}

/* ===== Responsive Navbar ===== */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 10px;
    height: auto;
  }
  .navbar-center-right .nav-links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-links span.desktop {
    display: none;
  }
  .nav-links i.mobile {
    display: inline-block;
    font-size: 22px;
  }
}
@media (min-width: 769px) {
  .nav-links i.mobile {
    display: none;
  }
}
