/* Search dropdown styling */
.search-container {
  position: relative;
  width: 100%;
  max-width: 220px;
  margin-top: 12px;
}

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #ffffff;
  padding: 8px 12px;
}

.search-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #222;
  font-size: 14px;
}

.search-input::placeholder {
  color: #999;
}

.search-icon {
  margin-left: 8px;
  color: #a72c32;
}

.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  z-index: 1000;
  max-height: 320px;
  overflow-y: auto;
}

.search-result-item {
  display: block;
  padding: 12px 14px;
  color: #111827;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
}

.search-result-item:last-child {
  border-bottom: none;
}

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

.search-result-title {
  font-size: 14px;
  font-weight: 600;
}

.search-result-title strong {
  color: #a72c32;
}

.search-result-category {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.search-no-results {
  padding: 14px;
  color: #6b7280;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 768px) {
  .search-container {
    max-width: 100%;
  }
}
