  .mn-search-wrapper {
  position: relative;
  width: 100%;
}

 .mn-search.search-form {
  display: flex;
  width: 100%;
}

 .mn-search-input {
  flex-grow: 1;
  width: 100%;
}

 .search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 5px;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}

.search-loading, .search-no-results {
  padding: 15px;
  color: #666;
  text-align: center;
  font-size: 14px;
}

.search-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-result-item {
  display: flex;
  padding: 10px 15px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.2s;
  align-items: center;
}

 
.search-result-item:hover {
  background: #f9f9f9;
}

.search-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 15px;
  flex-shrink: 0;
}

.search-info {
  flex-grow: 1;
  overflow: hidden;
}

.search-title {
  margin: 0 0 4px 0;
  font-size: 15px;
  color: #333;
}

.search-snippet {
  margin: 0;
  font-size: 13px;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

 .highlight {
  background-color: #ffeb3b;
  font-weight: bold;
  padding: 0 2px;
  border-radius: 2px;
}

 .search-show-all {
  padding: 12px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: bold;
  border-top: 1px solid #eaeaea;
  color: #333;
  transition: background 0.2s, color 0.2s;
}

.search-show-all:hover {
  background: #f9f9f9;
  color: #000;
}