#searchResults .list-group-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
#searchResults img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
#searchResults strong {
  font-size: 14px;
  color: #333;
}
#searchResults span {
  color: #28a745;
  font-weight: bold;
}

.desktop-nav .nav-link {
  font-size: 14px;
  color: #333;
  transition: color 0.3s;
}
.desktop-nav .nav-link:hover {
  color: #0f6b43;
}
.desktop-nav .nav-link.active {
  color: #0f6b43;
  font-weight: 600;
}
.desktop-nav .badge {
  font-size: 10px;
  padding: 4px 6px;
}

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  align-items: center;
}
.fullscreen-menu.active { transform: translateY(0); }
.menu-header {
  position: absolute; top: 20px; left: 20px; right: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.menu-logo { height: 40px; }
.close-menu { font-size: 2rem; background: none; border: none; color: #333; }
.menu-list { list-style: none; padding: 0; margin-top: 20px; width: 100%; }
.menu-list li { margin: 16px 0; text-align: center; }
.menu-list a {
  font-size: 1.3rem; font-weight: 600;
  color: #222; text-decoration: none;
}
.menu-list a:hover { color: #0f6b43; }




.user-dropdown {
  min-width: 200px;
  font-size: 15px;
}
.user-dropdown .dropdown-item i {
  width: 18px;
  text-align: center;
}



.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}


.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  align-items: center;
}
.fullscreen-menu.active {
  transform: translateY(0);
}

.menu-header {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-logo {
  height: 40px;
}

.close-menu {
  font-size: 2rem;
  background: none;
  border: none;
  color: #333;
  transition: transform 0.2s ease;
}
.close-menu:hover {
  transform: scale(1.2);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: center;
  width: 100%;
}

.menu-list li {
  margin: 16px 0;
}

.menu-list a {
  font-size: 1.3rem;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  display: block;
  transition: color 0.3s;
}
.menu-list a:hover {
  color: #0f6b43;
}
