body.vm-search-page {
  margin: 0;
  background: #ffffff;
  color: #0f1111;
}

.vm-search-section {
  --vm-search-bg: #ffffff;
  --vm-search-surface: #ffffff;
  --vm-search-surface-soft: #f7f8f8;
  --vm-search-border: #d5d9d9;
  --vm-search-border-strong: #c7c7c7;
  --vm-search-image-placeholder-bg: #f7f8f8;
  --vm-search-image-placeholder-padding: 14px;
  --vm-search-ink: #0f1111;
  --vm-search-muted: #565959;
  --vm-search-link: #2162a1;
  --vm-search-link-hover: #c45500;
  --vm-search-accent: #ffd814;
  --vm-search-accent-hover: #f7ca00;
  --vm-search-accent-border: #fcd200;
  --vm-search-star: #f59e0b;
  --vm-search-success: #007600;
  --vm-search-chip: #edf6ff;
  --vm-search-chip-ink: #004b91;
  --vm-search-font: "Amazon Ember", "Amazon Ember Display", "Segoe UI", Arial, sans-serif;
  width: min(1500px, calc(100% - 20px));
  margin: 0 auto;
  padding: 14px 0 34px;
  font-family: var(--vm-search-font);
}

.vm-search-section *,
.vm-search-section *::before,
.vm-search-section *::after {
  box-sizing: border-box;
}

.vm-search-section a {
  color: inherit;
  text-decoration: none;
}

.vm-search-section button,
.vm-search-section input,
.vm-search-section select {
  font: inherit;
}

.vm-search-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.vm-search-sidebar,
.vm-search-results {
  min-width: 0;
}

.vm-search-mobile-filter-toggle,
.vm-search-filter-panel__mobile-head,
.vm-search-sidebar__backdrop {
  display: none;
}

.vm-search-filter-panel__sticky {
  position: sticky;
  top: calc(var(--vm-global-header-height, 108px) + 10px);
}

.vm-search-filter-panel__mobile-head {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--vm-search-border);
}

.vm-search-filter-panel__mobile-head strong {
  color: var(--vm-search-ink);
  font-size: 1.06rem;
  font-weight: 700;
}

.vm-search-filter-panel__close,
.vm-search-mobile-filter-toggle {
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--vm-search-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--vm-search-ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.vm-search-filter-panel__close {
  display: inline-flex;
}

.vm-search-filter-panel__close:hover,
.vm-search-mobile-filter-toggle:hover {
  background: var(--vm-search-surface-soft);
}

.vm-search-mobile-filter-toggle strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--vm-search-accent);
  color: var(--vm-search-ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.vm-search-sidebar__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1390;
  background: rgba(15, 17, 17, 0.42);
}

.vm-search-filter-panel__summary {
  padding: 0 0 10px;
  border-bottom: 1px solid var(--vm-search-border);
}

.vm-search-filter-panel__summary strong {
  display: block;
  color: var(--vm-search-ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.vm-search-filter-panel__summary p {
  display: block;
  margin: 4px 0 0;
  color: var(--vm-search-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.vm-search-filter-panel__summary small {
  display: block;
  margin: 4px 0 0;
  color: var(--vm-search-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.vm-search-filter {
  border-bottom: 1px solid var(--vm-search-border);
}

.vm-search-filter summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  cursor: pointer;
  color: var(--vm-search-ink);
  font-size: 0.98rem;
  font-weight: 700;
}

.vm-search-filter summary::-webkit-details-marker {
  display: none;
}

.vm-search-filter summary::after {
  content: "+";
  color: var(--vm-search-muted);
  font-size: 1rem;
}

.vm-search-filter[open] summary::after {
  content: "-";
}

.vm-search-filter__body {
  display: grid;
  gap: 8px;
  padding: 0 0 14px;
}

.vm-search-filter__empty {
  margin: 0;
  color: var(--vm-search-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.vm-search-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  color: var(--vm-search-ink);
}

.vm-search-check input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: #007185;
}

.vm-search-check__label {
  min-width: 0;
  font-size: 0.94rem;
  line-height: 1.4;
}

.vm-search-check__count {
  color: var(--vm-search-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.vm-search-range {
  display: grid;
  gap: 12px;
}

.vm-search-range__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vm-search-range__summary div {
  padding: 10px;
  border: 1px solid var(--vm-search-border);
  border-radius: 8px;
  background: var(--vm-search-surface-soft);
}

.vm-search-range__summary small,
.vm-search-range__inputs label span,
.vm-search-sort label {
  display: block;
  margin-bottom: 4px;
  color: var(--vm-search-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vm-search-range__summary strong {
  font-size: 1.02rem;
  color: var(--vm-search-ink);
}

.vm-search-range__track {
  --range-start: 0%;
  --range-end: 100%;
  position: relative;
  height: 22px;
}

.vm-search-range__track::before {
  content: "";
  position: absolute;
  inset: 8px 0;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #d5d9d9 0%,
      #d5d9d9 var(--range-start),
      #f3a847 var(--range-start),
      #f3a847 var(--range-end),
      #d5d9d9 var(--range-end),
      #d5d9d9 100%
    );
}

.vm-search-range__track input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.vm-search-range__track input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #f3a847;
}

.vm-search-range__track input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #f3a847;
}

.vm-search-range__track input[type="range"]::-webkit-slider-runnable-track,
.vm-search-range__track input[type="range"]::-moz-range-track {
  background: transparent;
}

.vm-search-range__inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vm-search-range__inputs input,
.vm-search-sort__select {
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--vm-search-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--vm-search-ink);
  outline: none;
}

.vm-search-range__inputs input:focus,
.vm-search-sort__select:focus {
  border-color: #007185;
  box-shadow: 0 0 0 3px rgba(0, 113, 133, 0.14);
}

.vm-search-filter-panel__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding-top: 14px;
}

.vm-search-filter-panel__actions button,
.vm-search-lazy-loader__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--vm-search-accent-border);
  border-radius: 999px;
  background: var(--vm-search-accent);
  color: var(--vm-search-ink);
  font-size: 0.96rem;
  font-weight: 700;
}

.vm-search-filter-panel__actions button:hover,
.vm-search-lazy-loader__button:hover {
  background: var(--vm-search-accent-hover);
}

.vm-search-filter-panel__actions a,
.vm-search-empty-state__actions a,
.vm-search-pagination__edge,
.vm-search-pagination__page,
.vm-search-tag,
.vm-search-active-tags__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--vm-search-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--vm-search-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.vm-search-results {
  display: grid;
  gap: 12px;
}

.vm-search-toolbar {
  display: grid;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--vm-search-border);
}

.vm-search-toolbar__topline {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px 16px;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 4px;
}

.vm-search-breadcrumbs {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  color: var(--vm-search-muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

.vm-search-breadcrumbs a {
  color: var(--vm-search-link);
}

.vm-search-breadcrumbs a:hover {
  color: var(--vm-search-link-hover);
  text-decoration: underline;
}

.vm-search-breadcrumbs strong {
  color: var(--vm-search-ink);
}

.vm-search-toolbar__headline {
  display: inline-flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px 14px;
  min-width: 0;
  white-space: nowrap;
}

.vm-search-toolbar__eyebrow {
  display: inline-flex;
  margin: 0;
  color: var(--vm-search-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vm-search-toolbar h1 {
  margin: 0;
  color: var(--vm-search-ink);
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

.vm-search-toolbar p {
  margin: 0;
  color: var(--vm-search-muted);
  font-size: 0.94rem;
  line-height: 1.45;
  white-space: nowrap;
}

.vm-search-toolbar__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.vm-search-toolbar__results-summary {
  display: inline-flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 6px 12px;
  text-align: left;
  white-space: nowrap;
}

.vm-search-toolbar__results-summary span {
  display: inline-flex;
  color: var(--vm-search-ink);
  font-size: 0.98rem;
  font-weight: 700;
}

.vm-search-toolbar__results-summary small {
  display: inline-flex;
  margin: 0;
  color: var(--vm-search-muted);
  font-size: 0.88rem;
}

.vm-search-sort {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-left: auto;
}

.vm-search-toolbar .vm-search-sort label {
  display: inline-flex;
  margin: 0;
  white-space: nowrap;
}

.vm-search-toolbar .vm-search-sort__select {
  width: auto;
  min-width: 210px;
}

.vm-search-active-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.vm-search-active-tags__label {
  color: var(--vm-search-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.vm-search-tag {
  gap: 8px;
  background: var(--vm-search-chip);
  border-color: #cfe8ff;
  color: var(--vm-search-chip-ink);
}

.vm-search-tag strong {
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1;
}

.vm-search-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 14px;
}

.vm-search-recommendation-section {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--vm-search-border);
}

.vm-search-recommendation-section--full-span {
  grid-column: 1 / -1;
}

.vm-search-recommendation-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 16px;
}

.vm-search-recommendation-section__head > div {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.vm-search-recommendation-section__eyebrow {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--vm-search-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vm-search-recommendation-section__head h2 {
  margin: 0;
  color: var(--vm-search-ink);
  font-size: 1.5rem;
  line-height: 1.28;
  font-weight: 700;
  text-align: left;
}

.vm-search-recommendation-section__link {
  color: var(--vm-search-link);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.vm-search-recommendation-section__link:hover {
  color: var(--vm-search-link-hover);
  text-decoration: underline;
}

.vm-search-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #ffffff;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

.vm-search-card__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.vm-search-card__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: var(--vm-search-image-placeholder-padding);
  overflow: hidden;
  border: 1px solid var(--vm-search-border);
  border-radius: 8px;
  background: var(--vm-search-image-placeholder-bg);
}

.vm-search-card__media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  object-position: center;
}

.vm-search-card__flag {
  position: absolute;
  top: 8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vm-search-card__flag {
  right: 8px;
  background: #fef3c7;
  color: #9a6700;
}

.vm-search-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.vm-search-card__body {
  display: grid;
  gap: 10px;
  padding: 10px 2px 0;
}

.vm-search-card__delivery {
  color: var(--vm-search-muted);
}

.vm-search-card h2 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--vm-search-link);
}

.vm-search-card__link:hover h2,
.vm-search-card__link:focus-visible h2 {
  color: var(--vm-search-link-hover);
  text-decoration: underline;
}

.vm-search-card__price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
}

.vm-search-card__price {
  display: inline-flex;
  align-items: flex-start;
  color: var(--vm-search-ink);
}

.vm-search-card__currency {
  margin-top: 2px;
  margin-right: 4px;
  font-size: 1.06rem;
  font-weight: 700;
}

.vm-search-card__whole {
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.vm-search-card__fraction {
  margin-top: 4px;
  font-size: 1.04rem;
  font-weight: 700;
}

.vm-search-card__delivery {
  margin: 0;
  color: var(--vm-search-success);
  font-size: 1.08rem;
  line-height: 1.4;
  font-weight: 600;
}

.vm-search-card__summary {
  display: grid;
  gap: 4px;
  margin-top: auto;
}

.vm-search-card__location {
  margin: 0;
  color: var(--vm-search-muted);
  font-size: 1.02rem;
  line-height: 1.4;
  font-weight: 600;
}

.vm-search-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0;
  color: var(--vm-search-muted);
  font-size: 1rem;
  line-height: 1.4;
}

.vm-search-card__rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.vm-search-stars {
  --rating-percent: calc(var(--rating) / 5 * 100%);
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
}

.vm-search-stars::before {
  content: "\2605\2605\2605\2605\2605";
  color: #d5d9d9;
}

.vm-search-stars::after {
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  inset: 0;
  width: var(--rating-percent);
  overflow: hidden;
  color: var(--vm-search-star);
}

.vm-search-card__stats span {
  white-space: nowrap;
}

.vm-search-card.is-deferred {
  opacity: 0.88;
}

.vm-search-lazy-loader,
.vm-search-pagination,
.vm-search-empty-state {
  padding: 14px 0 0;
  border-top: 1px solid var(--vm-search-border);
}

.vm-search-lazy-loader {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.vm-search-lazy-loader p,
.vm-search-empty-state p {
  margin: 0;
  color: var(--vm-search-muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.vm-search-lazy-loader__sentinel {
  width: 100%;
  height: 1px;
}

.vm-search-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vm-search-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vm-search-pagination__page.is-active {
  background: var(--vm-search-accent);
  border-color: var(--vm-search-accent-border);
}

.vm-search-pagination__gap {
  display: inline-flex;
  align-items: center;
  color: var(--vm-search-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.vm-search-empty-state {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.vm-search-empty-state h2 {
  margin: 0;
  font-size: 1.32rem;
}

.vm-search-empty-state__actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 1450px) {
  .vm-search-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .vm-search-toolbar__topline {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .vm-search-toolbar__headline {
    flex-wrap: wrap;
    white-space: normal;
  }

  .vm-search-toolbar h1,
  .vm-search-toolbar p {
    white-space: normal;
  }

  .vm-search-toolbar__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .vm-search-sort {
    margin-left: 0;
  }

  .vm-search-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.vm-search-filters-open {
    overflow: hidden;
  }

  .vm-search-mobile-filter-toggle {
    display: inline-flex;
  }

  .vm-search-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1400;
    width: min(360px, calc(100vw - 28px));
    max-width: 100%;
    padding: 0;
    transform: translateX(calc(-100% - 20px));
    transition: transform 0.24s ease;
  }

  body.vm-search-filters-open .vm-search-sidebar {
    transform: translateX(0);
  }

  .vm-search-sidebar__backdrop {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }

  body.vm-search-filters-open .vm-search-sidebar__backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .vm-search-filter-panel {
    height: 100%;
    margin: 0;
  }

  .vm-search-filter-panel__sticky {
    position: relative;
    top: 0;
    display: grid;
    gap: 0;
    height: 100%;
    padding: 16px 18px 22px;
    overflow-y: auto;
    background: #ffffff;
    border-right: 1px solid var(--vm-search-border);
    box-shadow: 18px 0 38px rgba(15, 17, 17, 0.16);
  }

  .vm-search-filter-panel__mobile-head {
    display: flex;
  }

  .vm-search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vm-search-grid--recommendations {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(176px, 21vw);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    gap: 12px;
    padding-bottom: 6px;
    scroll-padding-left: 10px;
    scroll-snap-type: x proximity;
  }

  .vm-search-grid--recommendations > * {
    scroll-snap-align: start;
  }

  .vm-search-recommendation-section {
    gap: 10px;
    padding-top: 14px;
  }

  .vm-search-recommendation-section__eyebrow {
    font-size: 0.7rem;
  }

  .vm-search-recommendation-section__head h2 {
    font-size: 1.12rem !important;
  }

  .vm-search-grid--recommendations .vm-search-card__media {
    --vm-search-image-placeholder-padding: 8px;
  }

  .vm-search-grid--recommendations .vm-search-card__body {
    gap: 7px;
    padding-top: 8px;
  }

  .vm-search-grid--recommendations .vm-search-card h2 {
    font-size: 0.96rem;
    line-height: 1.28;
    letter-spacing: 0;
  }

  .vm-search-grid--recommendations .vm-search-card__currency,
  .vm-search-grid--recommendations .vm-search-card__fraction {
    font-size: 0.78rem;
  }

  .vm-search-grid--recommendations .vm-search-card__whole {
    font-size: 1.42rem;
    letter-spacing: 0;
  }

  .vm-search-grid--recommendations .vm-search-card__delivery,
  .vm-search-grid--recommendations .vm-search-card__location,
  .vm-search-grid--recommendations .vm-search-card__stats {
    font-size: 0.78rem;
  }
}

@media (max-width: 860px) {
  .vm-search-toolbar__topline {
    align-items: flex-start;
  }

  .vm-search-sort {
    display: grid;
    gap: 6px;
    width: 100%;
  }

  .vm-search-toolbar .vm-search-sort label {
    display: block;
  }

  .vm-search-toolbar .vm-search-sort__select {
    width: 100%;
    min-width: 0;
  }

  .vm-search-toolbar__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .vm-search-recommendation-section__head {
    flex-direction: column;
    align-items: stretch;
  }

  .vm-search-mobile-filter-toggle {
    width: 100%;
  }

  .vm-search-sort {
    min-width: 0;
  }

  .vm-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vm-search-grid--recommendations {
    grid-auto-columns: minmax(164px, 32vw);
  }
}

@media (max-width: 640px) {
  .vm-search-section {
    width: min(100%, calc(100% - 12px));
    padding: 12px 0 24px;
  }

  .vm-search-toolbar__headline {
    flex-basis: 100%;
    white-space: normal;
    gap: 6px 10px;
  }

  .vm-search-toolbar h1 {
    font-size: 1.02rem;
  }

  .vm-search-sidebar {
    width: min(100vw, 100%);
  }

  .vm-search-range__summary,
  .vm-search-range__inputs,
  .vm-search-filter-panel__actions {
    grid-template-columns: 1fr;
  }

  .vm-search-grid {
    grid-template-columns: 1fr;
  }

  .vm-search-grid--recommendations {
    grid-template-columns: none;
    grid-auto-columns: minmax(148px, calc(100vw - 158px));
    gap: 10px;
  }

  .vm-search-recommendation-section {
    gap: 8px;
  }

  .vm-search-recommendation-section__head {
    gap: 4px;
  }

  .vm-search-recommendation-section__head h2 {
    font-size: 0.98rem !important;
    line-height: 1.24 !important;
  }

  .vm-search-recommendation-section__link {
    font-size: 0.78rem;
  }

  .vm-search-grid--recommendations .vm-search-card h2 {
    font-size: 0.84rem;
  }

  .vm-search-grid--recommendations .vm-search-card__whole {
    font-size: 1.22rem;
  }

  .vm-search-pagination {
    flex-direction: column;
  }
}
