/* Korai Studio — search.html only.
   Shared styles (.wrap, .grid, .card, .btn, .notice, ...) live in
   base.css, loaded before this file. */

.search-form {
  display: flex;
  gap: .6rem;
  max-width: 480px;
  margin: 0 0 2rem;
}
.search-form input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--body);
  font-size: 1rem; /* 16px floor — iOS Safari zooms on focus below this, see product.css's own note on the same rule */
  color: var(--charcoal);
}
.search-form input[type="search"]:focus { outline: none; border-color: var(--olive); }
.search-count { font-size: .82rem; color: var(--ink-soft); margin: 0 0 1.25rem; }
