.hotel-search-autocomplete-wrap {
  position: relative;
  z-index: 50;
}

.hotel-search-autocomplete-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border: 1px solid var(--color-border, #e4e8f0);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-height: 360px;
  overflow-y: auto;
}

.hotel-search-autocomplete-dropdown.is-open {
  display: block;
}

.hotel-search-autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f1f5f9;
}

.hotel-search-autocomplete-item:hover,
.hotel-search-autocomplete-item.is-active {
  background: color-mix(in srgb, var(--color-blue-1, #3554D1) 8%, #fff);
}

.hotel-search-autocomplete-item:last-child {
  border-bottom: none;
}

.hotel-search-autocomplete-thumb {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f1f5f9;
}

.hotel-search-autocomplete-meta {
  flex: 1;
  min-width: 0;
}

.hotel-search-autocomplete-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a202c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hotel-search-autocomplete-location {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.hotel-search-autocomplete-rating {
  font-size: 12px;
  color: var(--color-blue-1, #3554D1);
  font-weight: 600;
  flex-shrink: 0;
}
