/* виджет поиска в шапке */
.search-widget {
  position: relative;
  max-width: 400px;
  margin: 0 auto 1.5rem auto;
}

.search-widget input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  border-radius: 60px;
  border: 2px solid #e2cfb5;
  background: white;
  outline: none;
  transition: all 0.2s;
}

.search-widget input:focus {
  border-color: #e09d4a;
  box-shadow: 0 0 0 3px rgba(224, 157, 74, 0.2);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 8px;
  display: none;
}

.search-results.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #f0e2d0;
  cursor: pointer;
  transition: background 0.1s;
}

.search-result-item:hover {
  background: #fef7ef;
}

.search-result-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
}

.search-result-info {
  flex: 1;
}

.search-result-title {
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #2c241a;
}

.search-result-desc {
  font-size: 0.85rem;
  color: #8b694a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-results-widget {
  padding: 1rem;
  text-align: center;
  color: #8b694a;
}