/* ============================================================
   RealDomainSearch — Search Bar Components v2
   ============================================================ */
.search-container { max-width: 700px; margin: 0 auto; }
.search-wrapper {
  display: flex;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.search-wrapper:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,194,168,.15);
}
.search-input {
  flex: 1; height: 50px;
  padding: 0 16px;
  border: none; outline: none;
  font-size: .95rem; color: var(--text);
  background: transparent;
}
.search-input::placeholder { color: var(--muted); }
.search-submit {
  height: 50px; min-width: 110px;
  background: var(--accent);
  color: var(--white);
  border: none; font-weight: 700; font-size: .9rem;
  cursor: pointer; transition: background var(--t-fast);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.search-submit:hover { background: var(--accent-dark); }
