/* Site search — header icon + results page */

/* Иконка в шапке (не ломает узкий блок телефона 234px) */
.site-search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #222;
  text-decoration: none;
  transition: color .15s ease, background .15s ease;
}
.site-search-icon:hover {
  color: #ff5a3c;
  background: rgba(255, 90, 60, 0.08);
}
.site-search-icon svg {
  display: block;
}

/* Телефон в одну строку рядом с иконкой */
.div--u-iez70y914 {
  flex-wrap: nowrap !important;
}
.div--u-iez70y914 .list--u-inx8n42ct,
.div--u-iez70y914 .text--u-i7kq4zg36,
.div--u-iez70y914 .text-block-wrap-div {
  white-space: nowrap;
}

.site-search-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 20px 80px;
  font-family: Montserrat, sans-serif;
  color: #222;
}
.site-search-page h1 {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 700;
}
.site-search-page__form {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
}
.site-search-page__input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #d0d0d0;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  font: inherit;
  font-size: 16px;
}
.site-search-page__btn {
  height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: #ff5a3c;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.site-search-page__btn:hover { background: #d94020; }
.site-search-page__hint,
.site-search-page__empty,
.site-search-page__meta {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 20px;
}
.site-search-page__hint a,
.site-search-page__empty a { color: #1a4fd6; }

.site-search-results {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ececec;
}
.site-search-results__item {
  border-bottom: 1px solid #ececec;
}
.site-search-results__link {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 4px;
  text-decoration: none;
  color: inherit;
}
.site-search-results__link:hover .site-search-results__title {
  color: #ff5a3c;
}
.site-search-results__img {
  width: 64px;
  height: 84px;
  flex-shrink: 0;
  background: #f3f3f3;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-search-results__img.is-empty {
  background: linear-gradient(135deg, #f0f0f0, #e4e4e4);
}
.site-search-results__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-search-results__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.site-search-results__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.site-search-results__sub {
  font-size: 13px;
  color: #777;
}
.site-search-results__price {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}
.site-search-results__badge {
  font-size: 12px;
  color: #1a4fd6;
  font-weight: 600;
}

@media (max-width: 600px) {
  .site-search-page {
    padding: 28px 16px 72px;
  }
  .site-search-page h1 { font-size: 22px; }
  .site-search-results__title { font-size: 15px; }
}
