#search-results-mobile.dropdown-mobile {
  position: absolute;
  z-index: 9999;
  background: white;
  width: 100%;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#search-results-mobile {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  z-index: 9999;
  max-height: 300px;
  overflow-y: auto;
}

.search-container-mobile {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

#search-input-mobile {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.dropdown-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: none;
	border: 0 !important;
  max-height: 400px;
  overflow-y: auto;
  z-index: 999;
}

.search-item-mobile {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.search-item-mobile img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.item-info {
  flex: 1;
}

.item-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.item-price {
  font-size: 14px;
  color: #333;
}

