.search-page .section-box {
  padding: 20px;
}
.search-keyword-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.search-keyword-list::-webkit-scrollbar {
  display: none;
}

.search-keyword-list li {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  border: 1px solid #c0c0c0;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  gap: 6px;
  line-height: 1;
  font-size: 14px;
}

.search-keyword-list li a {
  font-size: 15px;
}

.btn-delete {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-delete img {
  width: 14px;
  height: 14px;
  display: block;
}

.search-recommend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-recommend-list li {
  background-color: #eaeaea;
  border: 1px solid #eaeaea;
  padding: 0;
  border-radius: 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.search-recommend-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 15px;
}

/* 연관 검색어 */
.search-suggestion-overlay {
  position: fixed;
  top: 67px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 50px;
  max-width: 100%;
  margin: 0 auto;
}

.suggestion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.suggestion-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  cursor: pointer;
}

.suggestion-list li strong {
  font-weight: bold;
}

/* 검색 결과 */
.search-result-page .search-box-wrap {
  padding-bottom: 0;
  
}

.search-summary-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
}

.modal-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 500;
}

.modal-content p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.5;
}

.modal-btn-group {
  display: flex;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.modal-close img {
  display: block;
  width: 100%;
  height: 100%;
}

.search-box-wrap .btn-home i {
  font-size: 28px;
  color:#666;
}

.search-box-wrap .btn-back {
  margin-top: 4px;
}