/* =========================================
   SEARCH BAR & CHIPS
   ========================================= */

.index-search-wrap {
  padding: 5px 10px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #eee;
}

.index-search-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-search {
  flex: 1;
  background: #efefef;
  border-radius: 8px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-search #q {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  line-height: 1.1;
  padding: 0;
  height: 18px;
  min-width: 0;
}

.smart-search-label {
  font-size: 11px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.2px;
  white-space: nowrap;
  user-select: none;
}

.quick-chips {
  margin-top: 6px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #111;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}

.chip:hover {
  background: #f6f6f6;
}

.chip:active {
  transform: scale(0.98);
}