.stock-page {
  min-height: 100vh;
  background: #f5f5f5;
  color: #111;
}

.stock-page a {
  display: inline-flex;
}

.stock-shell {
  width: min(1260px, calc(100% - 32px));
  margin: 0 auto 80px;
}

.stock-nav .sidebar-link.is-active .sidebar-icon {
  background-color: var(--color-green);
}

.stock-hero,
.stock-workspace {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.stock-hero {
  margin-bottom: 12px;
  padding: 34px;
}

.stock-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.58);
  font-size: var(--type-small-body-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-small-body-line);
}

.stock-breadcrumbs a {
  color: inherit;
}

.stock-hero h1 {
  max-width: 100%;
  margin: 0;
  font-size: var(--type-page-title-size);
  font-weight: var(--type-heading-weight);
  line-height: var(--type-page-title-line);
  letter-spacing: var(--type-letter-spacing);
}

.stock-hero__lead {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: var(--type-body-large-size);
  line-height: var(--type-body-large-line);
  font-weight: var(--type-body-weight);
}

.stock-models {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e7e7e7;
}

.stock-models h2 {
  margin: 0 0 18px;
  font-size: var(--type-section-title-size);
  line-height: var(--type-section-title-line);
  font-weight: var(--type-heading-weight);
}

.stock-models__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stock-models__item {
  min-height: 84px;
  min-width: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  background: #fff;
  color: inherit;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  text-decoration: none;
  transition: opacity 160ms ease;
}

.stock-models__item:hover {
  opacity: 0.72;
}

.stock-models__preview {
  flex: 0 0 94px;
  width: 94px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: #f5f5f5;
}

.stock-models__preview img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stock-models__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stock-models__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stock-models__count {
  color: #777;
  white-space: nowrap;
}

.stock-models__more {
  margin-top: 18px;
}

.stock-models__more summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111;
  cursor: pointer;
  font-weight: var(--type-label-weight);
  list-style: none;
}

.stock-models__more summary::-webkit-details-marker {
  display: none;
}

.stock-models__more summary img {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.stock-models__more[open] summary img {
  transform: rotate(180deg);
}

.stock-models__more .stock-models__list {
  margin-top: 16px;
}

.stock-workspace {
  padding: 18px;
}

.stock-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 18px;
  overflow: visible;
}

.stock-quick-filter,
.stock-filter-button,
.stock-sort-menu__button,
.stock-filter-chip {
  flex: 0 0 auto;
  min-height: var(--control-height-lg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #e9e9e9;
  color: #111;
  padding: 0 22px;
  font-size: var(--type-small-body-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-small-body-line);
  white-space: nowrap;
}

.stock-filter-button,
.stock-sort-menu__button,
.stock-filter-chip {
  border-radius: 999px;
}

.stock-quick-filter b,
.stock-quick-filter i {
  font: inherit;
}

.stock-quick-filter.is-active,
.stock-filter-chip.is-active {
  background: #111;
  color: #fff;
}

.stock-filter-search {
  min-width: 0;
  min-height: var(--control-height-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-sm);
  background: #f4f4f4;
  padding: 0 14px;
}

.stock-filter-search img {
  width: 20px;
  height: 20px;
  opacity: 0.58;
}

.stock-filter-search input,
.stock-price-row input,
.stock-filter-chip select,
.stock-filter-chip input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: var(--type-small-body-size);
  font-weight: var(--type-label-weight);
}

.stock-filter-chip {
  position: relative;
}

.stock-filter-chip--select {
  min-width: 150px;
  padding-right: 44px;
}

.stock-filter-chip--select select {
  appearance: none;
  -webkit-appearance: none;
  height: var(--control-height-lg);
  color: inherit;
  cursor: pointer;
}

.stock-filter-chip--select img {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 18px;
  height: 18px;
  pointer-events: none;
  transform: translateY(-50%);
}

.stock-filter-chip--range {
  padding-right: 14px;
}

.stock-filter-chip--range span {
  flex: 0 0 auto;
}

.stock-filter-chip--range input {
  width: 74px;
  color: inherit;
}

.stock-filter-chip.is-active img {
  filter: invert(1);
}

.stock-sort-menu {
  position: relative;
  min-width: 258px;
  flex: 0 0 auto;
}

.stock-sort-menu--drawer {
  width: 100%;
  min-width: 0;
}

.stock-sort-menu__button {
  width: 100%;
  height: var(--control-height-lg);
  background: #e9e9e9;
  border: 0;
  justify-content: space-between;
  padding-right: 16px;
  cursor: pointer;
  text-align: left;
}

.stock-sort-menu--drawer .stock-sort-menu__button {
  min-height: var(--control-height-md);
  border-radius: 12px;
  background: #f4f4f4;
}

.stock-sort-menu__button img {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  transition: transform 0.16s ease;
}

.stock-sort-menu.is-open .stock-sort-menu__button img {
  transform: rotate(180deg);
}

.stock-sort-menu__popover {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  min-width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  padding: 8px;
}

.stock-sort-menu--drawer .stock-sort-menu__popover {
  right: 0;
}

.stock-sort-menu__option {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 0 14px;
  color: #111;
  font-size: var(--type-small-body-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-small-body-line);
  text-align: left;
  white-space: nowrap;
}

.stock-sort-menu__option:hover {
  background: #f4f4f4;
}

.stock-sort-menu__option.is-active {
  background: #111;
  color: #fff;
}

.stock-filter-drawer__footer button,
.stock-empty a {
  min-height: var(--control-height-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  padding: 0 18px;
  font-size: var(--type-small-body-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-small-body-line);
}

.stock-filter-button b {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-green);
  color: #111;
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  font-weight: var(--type-label-weight);
}

.stock-filter-drawer__footer button,
.stock-empty a {
  background: #111;
  color: var(--color-white);
}

.stock-results-head {
  margin: 8px 0 18px;
}

.stock-results-head h2 {
  margin: 0;
  font-size: var(--type-section-title-size);
  font-weight: var(--type-heading-weight);
  line-height: var(--type-section-title-line);
  letter-spacing: var(--type-letter-spacing);
}

.stock-demo-note {
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: #f7f7f7;
  padding: 14px 16px;
  color: rgba(0, 0, 0, 0.66);
  font-size: var(--type-small-body-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-small-body-line);
}

.stock-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: var(--spacing-xxl);
}

.stock-offer-card {
  min-width: 0;
  overflow: visible;
  border-radius: var(--radius-sm);
  background: #fff;
}

.stock-offer-card__media {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: transparent;
  aspect-ratio: 16 / 10;
}

.stock-offer-card__image-link {
  width: 100%;
  height: 100%;
  display: block;
}

.stock-offer-card__media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.stock-offer-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  object-position: center;
  transition: filter 0.18s ease;
}

.stock-offer-card__media.is-more-preview img {
  filter: brightness(0.48);
}

.stock-gallery-more {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--type-card-title-size);
  font-weight: var(--type-heading-weight);
  line-height: var(--type-card-title-line);
  pointer-events: none;
}

.stock-gallery-more[hidden] {
  display: none;
}

.stock-gallery-dots {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 18px;
}

.stock-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
}

.stock-gallery-dot.is-active {
  width: 24px;
  background: #fff;
}

.stock-offer-card__body {
  display: block;
  padding: 16px 0 2px;
}

.stock-offer-card h3 {
  margin: 0 0 10px;
  font-size: var(--type-body-large-size);
  font-weight: var(--type-heading-weight);
  line-height: var(--type-body-large-line);
  letter-spacing: var(--type-letter-spacing);
}

.stock-offer-card h3 a {
  display: inline;
  color: #111;
}

.stock-offer-card__price {
  margin: 0 0 8px;
  font-size: var(--type-body-large-size);
  font-weight: var(--type-heading-weight);
  line-height: var(--type-body-large-line);
  letter-spacing: var(--type-letter-spacing);
}

.stock-offer-card__specs {
  margin: 0 0 16px;
  color: rgba(0, 0, 0, 0.58);
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-line);
}

.stock-offer-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 18px;
}

.stock-offer-badge {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--color-light-gray);
  color: #111;
  padding: 0 11px;
  font-size: var(--type-small-body-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-small-body-line);
}

.stock-offer-badge--discount,
.stock-offer-badge--promo {
  background: #111;
  color: #fff;
}

.stock-offer-badge--vat {
  background: var(--color-green);
}

.stock-offer-card__dealer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 14px;
}

.stock-offer-card__dealer a,
.stock-offer-card__dealer span:not(.stock-offer-card__rating) {
  display: block;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.56);
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-line);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stock-load-more {
  width: 100%;
  box-sizing: border-box;
  min-height: var(--control-height-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0 0;
  border-radius: var(--control-radius);
  background: var(--color-light-gray);
  color: #111;
  font-size: var(--type-body-size);
  font-weight: var(--type-heading-weight);
  line-height: var(--type-body-line);
}

.stock-pagination {
  margin-top: 24px;
}

.stock-support-section {
  margin-top: 12px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-white);
  padding: 24px 18px;
}

.stock-section-head {
  margin-bottom: 18px;
}

.stock-section-head h2 {
  margin: 0;
  font-size: var(--type-section-title-size);
  font-weight: var(--type-heading-weight);
  line-height: var(--type-section-title-line);
  letter-spacing: var(--type-letter-spacing);
}

.stock-viewed-rail,
.stock-dealer-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 300px);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.stock-viewed-rail::-webkit-scrollbar,
.stock-dealer-rail::-webkit-scrollbar {
  display: none;
}

.stock-viewed-card,
.stock-dealer-tile {
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: #111;
}

.stock-viewed-card picture,
.stock-viewed-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border-radius: var(--radius-sm);
}

.stock-viewed-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stock-viewed-card span,
.stock-viewed-card strong {
  margin-top: 10px;
  font-size: var(--type-body-size);
  font-weight: var(--type-heading-weight);
  line-height: var(--type-body-line);
}

.stock-viewed-card strong {
  margin-top: 2px;
}

.stock-viewed-card em,
.stock-dealer-tile span,
.stock-dealer-tile em {
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.56);
  font-size: var(--type-small-body-size);
  font-style: normal;
  font-weight: var(--type-body-weight);
  line-height: var(--type-small-body-line);
}

.stock-dealer-tile {
  position: relative;
  min-height: 150px;
  border-radius: var(--radius-sm);
  background: var(--color-light-gray);
  padding: 18px 72px 18px 18px;
}

.stock-dealer-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-size: var(--type-small-body-size);
  font-weight: var(--type-label-weight);
  line-height: 1;
}

.stock-dealer-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.stock-dealer-tile strong {
  margin-top: 8px;
  font-size: var(--type-body-size);
  font-weight: var(--type-heading-weight);
  line-height: var(--type-body-line);
}

.stock-dealer-tile em {
  margin-top: auto;
}

.stock-dealer-tile .stock-dealer-logo {
  margin: 0;
  color: #111;
}

.stock-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.55fr);
  gap: 34px 56px;
  margin-top: 12px;
  border-radius: var(--radius-md);
  background: #111;
  color: #fff;
  padding: 38px 34px 26px;
}

.stock-footer__brand {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stock-footer__logo {
  display: inline-flex;
}

.stock-footer__logo img {
  width: 119px;
  height: auto;
  display: block;
}

.stock-footer p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-line);
}

.stock-footer__support {
  margin-top: auto;
}

.stock-footer__support span,
.stock-footer__bottom span {
  display: block;
  color: rgba(255, 255, 255, 0.46);
  font-size: var(--type-label-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-label-line);
}

.stock-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: var(--type-body-size);
  font-weight: var(--type-heading-weight);
  line-height: var(--type-body-line);
}

.stock-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--type-small-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-small-body-line);
}

.stock-footer__support a {
  margin-top: 6px;
  color: #fff;
  font-size: var(--type-body-size);
  font-weight: var(--type-label-weight);
}

.stock-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.stock-footer nav,
.stock-footer__note {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.stock-footer nav a + a {
  margin-top: 10px;
}

.stock-footer__note p {
  margin: 0;
  font-size: var(--type-small-body-size);
  line-height: var(--type-small-body-line);
}

.stock-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
}

.stock-offer-card__rating {
  flex: 0 0 auto;
  min-width: 40px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--color-green);
  color: #111;
  font-size: var(--type-small-body-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-small-body-line);
}

.stock-empty {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
}

.stock-empty h2 {
  margin: 0 0 8px;
  font-size: var(--type-section-title-size);
  font-weight: var(--type-heading-weight);
  line-height: var(--type-section-title-line);
  letter-spacing: var(--type-letter-spacing);
}

.stock-empty p {
  max-width: 420px;
  margin: 0 0 20px;
  color: rgba(0, 0, 0, 0.62);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  font-weight: var(--type-body-weight);
}

.stock-filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.stock-filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  width: min(460px, 100vw);
  height: 100vh;
  height: 100svh;
  background: #fff;
  box-shadow: -24px 0 54px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.stock-filter-drawer form {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 24px;
}

.stock-page.filter-drawer-open {
  overflow: hidden;
}

.stock-page.filter-drawer-open .stock-filter-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.stock-page.filter-drawer-open .stock-filter-drawer {
  transform: translateX(0);
}

.stock-filter-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.stock-filter-drawer__header span {
  display: block;
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.52);
  font-size: var(--type-label-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-label-line);
  text-transform: uppercase;
}

.stock-filter-drawer__header h2 {
  margin: 0;
  font-size: var(--type-section-title-size);
  font-weight: var(--type-heading-weight);
  line-height: var(--type-section-title-line);
  letter-spacing: var(--type-letter-spacing);
}

.stock-filter-drawer__header button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f4f4f4;
}

.stock-filter-drawer__header img {
  width: 22px;
  height: 22px;
}

.stock-filter-search {
  margin-bottom: 18px;
}

.stock-filter-block {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 0;
}

.stock-filter-block summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -6px 0 12px;
  border-radius: 12px;
  padding: 6px 0;
  cursor: pointer;
  list-style: none;
}

.stock-filter-block summary::-webkit-details-marker {
  display: none;
}

.stock-filter-block summary img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  opacity: 0.58;
  transform: rotate(180deg);
  transition: transform 0.16s ease;
}

.stock-filter-block:not([open]) summary {
  margin-bottom: -6px;
}

.stock-filter-block:not([open]) summary img {
  transform: rotate(0deg);
}

.stock-filter-block h3 {
  margin: 0;
  font-size: var(--type-body-size);
  font-weight: var(--type-heading-weight);
  line-height: var(--type-body-line);
  letter-spacing: var(--type-letter-spacing);
}

.stock-filter-block p {
  margin: 10px 0 0;
  color: rgba(0, 0, 0, 0.54);
  font-size: var(--type-label-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-label-line);
}

.stock-filter-block--disabled {
  opacity: 0.62;
}

.stock-filter-block--disabled summary {
  cursor: default;
}

.stock-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.stock-filter-select {
  position: relative;
  min-height: var(--control-height-md);
  display: flex;
  align-items: center;
  border-radius: 12px;
  background: #f4f4f4;
  padding: 0 44px 0 12px;
}

.stock-filter-select select {
  width: 100%;
  min-width: 0;
  height: var(--control-height-md);
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: none;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: var(--type-small-body-size);
  font-weight: var(--type-label-weight);
  cursor: pointer;
}

.stock-filter-select img {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 18px;
  height: 18px;
  pointer-events: none;
  transform: translateY(-50%);
}

.stock-price-row input {
  height: var(--control-height-md);
  border-radius: 12px;
  background: #f4f4f4;
  padding: 0 12px;
}

.stock-choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stock-choice-list label {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f4f4f4;
  padding: 0 14px;
  color: #111;
  font-size: var(--type-small-body-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-small-body-line);
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.stock-choice-list input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.stock-filter-block--disabled .stock-choice-list label,
.stock-filter-block--disabled .stock-choice-list input {
  cursor: default;
}

.stock-choice-list label:has(input:checked) {
  background: #111;
  color: #fff;
}

.stock-choice-list label:has(input:focus-visible) {
  outline: 2px solid #8cff1a;
  outline-offset: 2px;
}

.stock-check-list {
  display: grid;
  gap: 6px;
  max-height: 450px;
  overflow-y: auto;
  padding-right: 4px;
  overscroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.stock-check-list::-webkit-scrollbar {
  width: 6px;
}

.stock-check-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.stock-check-list::-webkit-scrollbar-track {
  background: transparent;
}

.stock-check-list label {
  min-height: 38px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
  transition: background-color 0.16s ease;
}

.stock-check-list label.is-hidden {
  display: none;
}

.stock-filter-subtitle {
  margin: 0 0 8px;
  color: rgba(0, 0, 0, 0.48);
  font-size: var(--type-label-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-label-line);
}

.stock-filter-extra-section {
  margin-top: 14px;
}

.stock-filter-extra-section.is-hidden {
  display: none;
}

.stock-check-list label:hover {
  background: #f5f5f5;
}

.stock-check-list input {
  width: 18px;
  height: 18px;
  accent-color: #111;
}

.stock-check-list span {
  overflow: hidden;
  color: #111;
  font-size: var(--type-small-body-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-small-body-line);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stock-check-list em {
  color: rgba(0, 0, 0, 0.44);
  font-size: var(--type-label-size);
  font-style: normal;
  font-weight: var(--type-label-weight);
  line-height: var(--type-label-line);
}

.stock-filter-more {
  margin-top: 8px;
  color: #111;
  font-size: var(--type-label-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-label-line);
}

.stock-filter-drawer__footer {
  position: sticky;
  bottom: -24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 8px;
  margin: auto -24px -24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 14px 24px 24px;
}

.stock-filter-drawer__footer a {
  min-height: var(--control-height-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: #f1f1f1;
  color: #111;
  font-size: var(--type-small-body-size);
  font-weight: var(--type-label-weight);
}

@media (max-width: 1180px) {
  .stock-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1151px) {
  .stock-shell {
    --stock-shell-width: min(1480px, calc(100vw - var(--desktop-rail-width, 136px) - 48px));
    width: var(--stock-shell-width);
    margin-left: calc(var(--desktop-rail-width, 136px) + (100vw - var(--desktop-rail-width, 136px) - var(--stock-shell-width)) / 2);
    margin-right: auto;
  }
}

@media (min-width: 1320px) {
  .stock-offer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .stock-shell {
    width: min(100% - 16px, 560px);
    margin-bottom: 40px;
  }

  .stock-hero,
  .stock-workspace {
    border-radius: var(--radius-sm);
  }

  .stock-hero {
    padding: 22px 16px;
  }

  .stock-hero h1 {
    font-size: var(--type-section-title-size);
    line-height: var(--type-section-title-line);
  }

  .stock-hero__lead {
    font-size: var(--type-body-size);
  }

  .stock-models__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stock-models h2 {
    font-size: var(--type-card-title-size);
  }

  .stock-workspace {
    padding: 10px;
  }

  .stock-toolbar {
    flex-wrap: wrap;
  }

  .stock-filter-button,
  .stock-sort-menu {
    flex: 0 0 auto;
  }

  .stock-sort-menu {
    min-width: min(258px, 100%);
  }

  .stock-results-head {
    display: block;
  }

  .stock-results-head h2 {
    font-size: var(--type-card-title-size);
    line-height: var(--type-card-title-line);
  }

  .stock-offer-grid {
    grid-template-columns: 1fr;
  }

  .stock-offer-card__body {
    min-height: 0;
  }

  .stock-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 18px 22px;
  }

  .stock-footer__brand {
    min-height: 0;
  }

  .stock-footer__support {
    margin-top: 24px;
  }

  .stock-footer__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stock-footer__bottom {
    display: block;
  }

  .stock-footer__bottom a {
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .stock-filter-drawer form {
    padding: 18px;
  }

  .stock-filter-drawer__footer {
    bottom: -18px;
    margin: auto -18px -18px;
    padding: 12px 18px 18px;
  }
}
