.catalog-search {
  position: relative;
  z-index: 60;
}

.catalog-search-header {
  width: min(18rem, 22vw);
  margin-left: 1rem;
}

.catalog-search-category {
  width: min(100%, 42rem);
  margin: -1rem auto 2.5rem;
}

.catalog-search-header-mobile {
  width: 100%;
  padding: .35rem .75rem .75rem;
}

.catalog-search-field {
  position: relative;
  display: block;
}

.catalog-search-field input {
  width: 100%;
  height: 2.65rem;
  padding: 0 2.5rem 0 1rem;
  color: #111827;
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 9999px;
  outline: none;
  box-shadow: 0 1px 3px rgb(15 23 42 / 8%);
}

.catalog-search-field input:focus {
  border-color: var(--primary-color, #667eea);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color, #667eea) 18%, transparent);
}

.catalog-search-icon {
  position: absolute;
  right: .9rem;
  top: 50%;
  transform: translateY(-54%);
  color: #64748b;
  font-size: 1.35rem;
  pointer-events: none;
}

.catalog-search-results {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  right: 0;
  max-height: min(30rem, 70vh);
  overflow: auto;
  padding: .45rem;
  color: #111827;
  text-align: left;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: .85rem;
  box-shadow: 0 18px 45px rgb(15 23 42 / 18%);
}

.catalog-search-results.is-loading,
.catalog-search-empty {
  padding: .85rem 1rem;
  color: #64748b;
  font-size: .9rem;
}

.catalog-search-result {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem;
  border-radius: .65rem;
}

.catalog-search-result:hover,
.catalog-search-result:focus-visible {
  background: #f8fafc;
}

.catalog-search-result img {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  object-fit: contain;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: .5rem;
}

.catalog-search-result-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.catalog-search-result-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .9rem;
}

.catalog-search-result-copy small {
  color: var(--primary-color, #667eea);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .catalog-search-header { width: 13rem; }
}

@media (max-width: 1023px) {
  .catalog-search-header { display: none; }
  .catalog-search-category { margin-top: -1.5rem; }
}
