

/* Start:/local/components/bitrix/search.page/templates/search/style.css?17610704242774*/
.search-page-wrap .path {
  display: block;
  list-style: none;
  background: 0 0;
  margin: 0;
  padding: 0 0px 5px;
}
.search-page-wrap .path > li {
  margin: 0 0 0 11px;
  padding: 0;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  font-size: 0.8667em;
  color: #bbb;
}
.search-page-wrap .path > li:first-of-type {
  margin-left: 0;
}
.search-page-wrap .path > li:before {
  margin-right: 10px;
  margin-left: 0;
  color: #ddd;
}
.search-page-wrap .path > li:first-of-type:before {
  display: none;
}
.search-page-wrap .path > li a {
  color: #bbb;
}

.search-page-wrap form {
  position: relative;
}
.search-page-wrap .searchinput {
  padding: 0px 0px 26px;
}
.search-page-wrap .dropdown-select {
  padding: 0px 0px 16px;
}
.search-page-wrap .item {
  padding: 32px 40px 33px;
  margin-top: -1px;
  background: #fff;
  background: var(--card_bg_black);
}
.search-page-wrap .item .title {
  display: block;
  padding: 0px 0px 16px;
}
.search-page-wrap .item .arrow_link {
  position: absolute;
  right: 39px;
  top: 39px;
  display: inline-block;
  width: 38px;
  height: 38px;
}
.search-page-wrap .item .arrow_link .svg {
  position: absolute;
  top: 13px;
  left: 12px;
}
.search-page-wrap .item:hover .arrow_link .svg path {
  fill: #fff;
}
.item-wrapper{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.item-wrapper .image{
  margin-right: 20px;
  min-width: 200px;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price{
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 320px);
  justify-content: center; /* чтобы сетка была по центру страницы */
  gap: 0; /* без расстояний между элементами */
}

/* при уменьшении экрана до 1200px – 2 в ряд */
@media (max-width: 1300px) {
  .items-grid {
    grid-template-columns: repeat(2, 320px);
  }
}

/* при уменьшении экрана до 600px – 1 в ряд */
@media (max-width: 650px) {
  .items-grid {
    grid-template-columns: repeat(1, 320px);
  }
}
.items-grid .item {
  display: flex;
  flex-direction: column;
  width: 320px;
  height: 100%; /* чтобы занимал всю высоту родителя (строки в grid) */
  box-sizing: border-box;
}

.items-grid .item-wrapper {
  flex: 1; /* <-- растягивает блок до конца карточки */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* чтобы картинка сверху, контент внизу */
}
/* End */
/* /local/components/bitrix/search.page/templates/search/style.css?17610704242774 */
