/* Brand Editor — ptrain catalog search (preview tabs toolbar) */
.preview-catalog-search {
  display: none;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
  min-width: 0;
  margin-left: auto;
  padding: 0 0 0 12px;
  background: transparent;
  border: 0;
}
.preview-catalog-search.visible {
  display: flex;
}
.preview-catalog-search__field {
  position: relative;
  flex: 0 0 210px;
  width: 210px;
  max-width: 210px;
  box-sizing: border-box;
}
.preview-catalog-search__icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
}
.preview-catalog-search__icon svg {
  width: 14px;
  height: 14px;
  display: block;
}
.preview-catalog-search input[type='search'] {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  font-family: var(--ed-font);
  font-size: 13px;
  font-weight: 400;
  padding: 6px 28px 6px 32px;
  border-radius: 6px;
  border: 1px solid var(--ed-border);
  background: var(--ed-surface2);
  color: var(--ed-text);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.preview-catalog-search input[type='search']::placeholder {
  color: #94a3b8;
  opacity: 1;
  font-weight: 400;
}
.preview-catalog-search input[type='search']:focus {
  border-color: var(--ed-accent);
}
.preview-catalog-search input[type='search']::-webkit-search-cancel-button,
.preview-catalog-search input[type='search']::-webkit-search-decoration {
  display: none;
}
.preview-catalog-search__clear {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.preview-catalog-search__clear.is-visible {
  display: flex;
}
.preview-catalog-search__clear:hover {
  color: var(--ed-text);
}
.preview-catalog-search__clear svg {
  width: 14px;
  height: 14px;
  display: block;
}
.preview-catalog-search__meta {
  flex: 0 0 auto;
  min-width: 86px;
  width: auto;
  max-width: none;
  font-size: 11px;
  color: var(--ed-muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.preview-catalog-search__meta.is-empty {
  color: var(--ed-warn);
}
