.vch {
  background: var(--vierlot-bg);
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--vierlot-line);
  font-family: var(--vierlot-font);
  color: var(--vierlot-text);
}

.vch__container {
  width: 100%;
}

.vch__breadcrumb {
  font-size: 12px;
  color: var(--vierlot-text-light);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.vch__crumb,
.vch__breadcrumb a {
  color: var(--vierlot-text-light);
  text-decoration: none;
}

.vch__crumb:hover,
.vch__breadcrumb a:hover {
  color: var(--vierlot-text);
}

.vch__sep {
  margin: 0 8px;
  color: var(--vierlot-text-muted);
}

.vch__crumb-current {
  color: var(--vierlot-text);
}

.vch__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.vch__title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
  flex: 0 0 auto;
  line-height: 1.2;
}

.vch__count {
  font-size: 12px;
  color: var(--vierlot-text-light);
  letter-spacing: 0.04em;
  flex: 1 1 auto;
  margin-left: 8px;
}

.vch__sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--vierlot-text-light);
  letter-spacing: 0.02em;
  position: relative;
}

.vch__sort-label {
  white-space: nowrap;
}

.vch__sort-select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--vierlot-line);
  padding: 4px 22px 4px 4px;
  font-family: inherit;
  font-size: 13px;
  color: var(--vierlot-text);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  min-width: 160px;
}

.vch__sort-select:focus {
  outline: none;
  border-bottom-color: var(--vierlot-text);
}

.vch__sort-caret {
  position: absolute;
  right: 4px;
  pointer-events: none;
  color: var(--vierlot-text-light);
}

.facets-sorting-wrapper,
.facets-mobile__modals theme-modal.js-action,
.facets-mobile-inner > .page-width.facets-count {
  display: none !important;
}

@media (max-width: 768px) {
  .vch {
    padding: 14px 0 12px;
  }
  .vch__breadcrumb {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .vch__row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .vch__title {
    font-size: 20px;
  }
  .vch__count {
    margin-left: 0;
  }
  .vch__sort {
    justify-content: space-between;
    width: 100%;
  }
  .vch__sort-select {
    flex: 1;
    min-width: 0;
  }
}
