/* TropicoHead Smart Search — v2.0 (hero search) */

/* Results dropdown */
.search-result {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border, #d4cfc4);
  transition: background 0.1s;
}

.search-result:hover,
.search-result.active {
  background: var(--accent-light, #e8f0e4);
}

.search-result-title {
  font-weight: 600;
  color: var(--accent-dark, #2a5e32);
  margin-bottom: 0.25rem;
}

.search-result-snippet {
  font-size: 0.85rem;
  color: var(--text-muted, #5a5a5a);
  line-height: 1.4;
}

.search-result-snippet mark {
  background: #fef3cd;
  color: inherit;
  padding: 0 1px;
  border-radius: 2px;
}

.search-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--text-muted, #5a5a5a);
  font-size: 0.95rem;
}

/* Mobile — larger tap targets */
@media (max-width: 700px) {
  .search-result {
    padding: 1rem;
    min-height: 44px;
  }

  .search-hero #search-input {
    font-size: 1.2rem;
    padding: 1rem 1.2rem;
  }
}
