.gau-catalog-search {
  position: relative;
  width: min(100%, 44rem);
  margin: 0 auto;
  padding: 0.45rem 0 0.7rem;
}

.gau-catalog-search__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-default);
}

.gau-catalog-search__input {
  width: 100%;
  min-height: 2.2rem;
  padding: 0.35rem 0 0.45rem;
  border: 0;
  border-bottom: 1px solid var(--color-border-strong);
  background: transparent;
  color: var(--color-text-default);
  font-size: 0.88rem;
  line-height: 1.4;
  box-shadow: none;
  border-radius: 0;
}

.gau-catalog-search__input::placeholder {
  color: var(--color-text-muted);
}

.gau-catalog-search__input:focus {
  outline: none;
  border-bottom-color: var(--color-hover);
}

.gau-catalog-search__results {
  position: fixed;
  top: 0;
  left: 0;
  width: min(26rem, calc(100vw - 2rem));
  z-index: 1000;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-soft);
  background: rgba(241, 240, 236, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  max-height: min(70vh, 32rem);
  overflow-y: auto;
}

.gau-catalog-search__result,
.gau-catalog-search__all,
.gau-catalog-search__empty {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
}

.gau-catalog-search__results > :first-child {
  border-top: 0;
}

.gau-catalog-search__result-title {
  color: var(--color-text-default);
  font-weight: 600;
  font-family: 'Arpel-Gotham', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.gau-catalog-search__result-meta,
.gau-catalog-search__all,
.gau-catalog-search__empty {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.gau-catalog-search__result:hover,
.gau-catalog-search__all:hover {
  background: var(--color-bg-muted-strong);
}
