/*
 * 商品検索サジェスト（GTSS-898）- template20260524
 *
 * style.css は scss からのビルド生成物のため、サジェスト分は独立したファイルに置く。
 */

.hatt-suggest {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  width: 100%;
  max-height: 60vh;
  margin: 4px 0 0;
  padding: 0;
  overflow-y: auto;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hatt-suggest[hidden] {
  display: none;
}

.hatt-suggest__item {
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  cursor: pointer;
  /* 商品名は平均37文字と長く、省略すると候補を見分けられないため折り返す */
  white-space: normal;
  overflow-wrap: anywhere;
}

.hatt-suggest__item + .hatt-suggest__item {
  border-top: 1px solid #eee;
}

.hatt-suggest__item:hover,
.hatt-suggest__item.is-active {
  background-color: #f0f0f0;
}

@media screen and (max-width: 767px) {
  .hatt-suggest__item {
    font-size: 16px; /* iOS でのフォーカス時ズームを防ぐ */
  }
}
