/* Критичная геометрия site-chrome — первым в head, до styles.css */
.header--chrome {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 6px 16px rgba(13, 27, 42, 0.04);
}
.header--chrome .header-inner {
  min-height: 52px;
}
.header--chrome .site-chrome__search {
  padding: 10px 16px 12px;
}
.site-chrome .home-search--lines {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px 14px;
  width: min(1280px, 100%);
  margin: 0 auto;
}
.site-chrome .home-vt-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
  flex: 1 1 100%;
  min-height: 34px;
}
.site-chrome .home-search-form {
  display: contents;
}
.site-chrome .home-search-field select {
  height: 34px;
  min-height: 34px;
}
.site-nav-toggle {
  display: none;
}
@media (max-width: 900px) {
  .header--chrome {
    position: static;
    box-shadow: none;
  }
  .header--chrome .site-chrome__search {
    padding: 4px 12px 6px;
  }
  .site-nav-toggle {
    display: inline-flex;
  }
  .site-chrome .home-vt-ico {
    display: none;
  }
  .site-chrome .home-search--lines {
    gap: 4px 8px;
  }
  .site-chrome .home-search-field--make,
  .site-chrome .home-search-field--model,
  .site-chrome .home-search-field--year {
    flex: 1 1 0;
    width: 0;
    max-width: none;
  }
  .site-chrome .home-search-field--generation {
    flex: 1 1 100%;
    max-width: none;
    width: auto;
  }
  .site-chrome .home-search-field select {
    height: 30px;
    min-height: 30px;
  }
}
