.cv-cottage-search {
  display: inline-block;
  width: 100%;
  max-width: 420px;
  position: relative;
}

.cv-cottage-search__wrap {
  position: relative;
  display: flex;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}
.cv-cottage-search__wrap:focus-within {
  border-color: #0073aa;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
  outline: none;
}

.cv-cottage-search__input {
  flex: 1 1 0%;
  width: 100%;
  padding: 10px 44px 10px 14px;
  font-size: 1rem;
  line-height: 1.5;
  border: none;
  background: transparent;
  color: inherit;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.cv-cottage-search__input::-webkit-search-cancel-button {
  display: none;
}

.cv-cottage-search__btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-left: 1px solid transparent;
  cursor: pointer;
  color: #888;
  padding: 0;
}
.cv-cottage-search__btn:hover {
  color: #222;
}
.cv-cottage-search__btn svg {
  display: block;
}

.cv-cottage-search__ac {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 4px 0;
  max-height: 320px;
  overflow-y: auto;
}

.cv-cottage-search__ac-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 0.9rem;
}
.cv-cottage-search__ac-item:hover {
  background: #f5f5f5;
}

.cv-cottage-search__ac-name {
  flex: 1 1 0%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cv-cottage-search__ac-no {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: #888;
}
