:root {
  --elf-advancedsearch-overlay: var(--overlay, rgb(49 64 205 / 45%));
}

.search.search--desktop,
.brandbar-search .search {
  display: block !important;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.search.search--desktop input[type="search"],
.search.search--desktop input[type="text"],
.brandbar-search .search input[type="search"],
.brandbar-search .search input[type="text"] {
  display: block;
  width: 100%;
  height: 44px;
  min-height: 44px !important;
  margin: 0;
  padding: 11px 96px 11px 16px !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 5px !important;
  background: #ffffff !important;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  font-family: var(--font, inherit) !important;
  box-shadow: none !important;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.search.search--desktop input[type="search"]::placeholder,
.search.search--desktop input[type="text"]::placeholder,
.brandbar-search .search input[type="search"]::placeholder,
.brandbar-search .search input[type="text"]::placeholder {
  color: #64748b;
  font-weight: 500;
  opacity: 1;
  font-family: var(--font, inherit);
}

.search.search--desktop input[type="search"]:focus,
.search.search--desktop input[type="text"]:focus,
.brandbar-search .search input[type="search"]:focus,
.brandbar-search .search input[type="text"]:focus {
  border-color: var(--brand, #272937) !important;
  box-shadow: 0 0 0 3px rgba(39, 41, 55, 0.14) !important;
  outline: none;
}

.search.search--desktop button[type="submit"],
.brandbar-search .search button[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  height: auto;
  margin: 0 !important;
  z-index: 2;
  border: 0;
  border-radius: 0;
  background: rgba(15, 17, 21, .04) !important;
  color: var(--ink, #0f172a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none !important;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.search.search--desktop button[type="submit"]:hover,
.search.search--desktop button[type="submit"]:focus,
.brandbar-search .search button[type="submit"]:hover,
.brandbar-search .search button[type="submit"]:focus {
  background: rgba(15, 17, 21, .06) !important;
  border-color: var(--stroke, #cbd5e1) !important;
  color: var(--ink, #0f172a);
  box-shadow: none !important;
  outline: none;
}

.search.search--desktop button[type="submit"] .icon,
.brandbar-search .search button[type="submit"] .icon {
  width: 18px;
  height: 18px;
}

.elf-advancedsearch-clear {
  position: absolute;
  right: 54px;
  top: 0;
  bottom: 0;
  width: 34px;
  height: auto;
  margin: 0 !important;
  z-index: 2;
  border: 1px solid var(--stroke, #cbd5e1) !important;
  border-radius: 5px;
  background: rgba(15, 17, 21, .04) !important;
  color: var(--ink, #0f172a) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.search.search--desktop.has-value .elf-advancedsearch-clear,
.brandbar-search .search.has-value .elf-advancedsearch-clear {
  opacity: 1;
  pointer-events: auto;
}


.elf-advancedsearch-clear:hover,
.elf-advancedsearch-clear:focus {
  background: rgba(15, 17, 21, .06) !important;
  border-color: var(--stroke, #cbd5e1) !important;
  color: var(--ink, #0f172a) !important;
  box-shadow: 0 8px 18px rgba(15, 17, 21, .10);
  outline: none;
}

.elf-advancedsearch-clear .icon {
  width: 16px;
  height: 16px;
  color: currentColor !important;
  fill: currentColor !important;
}

.elf-advancedsearch-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2000;
  background: var(--elf-advancedsearch-overlay);
  display: none;
}

.elf-advancedsearch-backdrop.is-open {
  display: block;
}

body.elf-advancedsearch-open #menu {
  z-index: 2002 !important;
}

body.elf-advancedsearch-open #menu::after {
  content: none;
  display: none;
}

body.elf-advancedsearch-open #menu .search.search--desktop,
body.elf-advancedsearch-open #menu .brandbar-search .search {
  z-index: 2004;
}

body.elf-advancedsearch-open #menu .search.search--desktop.elf-advancedsearch-active,
body.elf-advancedsearch-open #menu .brandbar-search .search.elf-advancedsearch-active {
  display: block !important;
  z-index: 2006 !important;
  isolation: isolate;
}

body.elf-advancedsearch-open #menu .search.search--desktop.elf-advancedsearch-active input[type="search"],
body.elf-advancedsearch-open #menu .search.search--desktop.elf-advancedsearch-active input[type="text"],
body.elf-advancedsearch-open #menu .brandbar-search .search.elf-advancedsearch-active input[type="search"],
body.elf-advancedsearch-open #menu .brandbar-search .search.elf-advancedsearch-active input[type="text"] {
  position: relative;
  z-index: 2007;
}

body.elf-advancedsearch-open #menu .search.search--desktop.elf-advancedsearch-active button[type="submit"],
body.elf-advancedsearch-open #menu .search.search--desktop.elf-advancedsearch-active .elf-advancedsearch-clear,
body.elf-advancedsearch-open #menu .brandbar-search .search.elf-advancedsearch-active button[type="submit"],
body.elf-advancedsearch-open #menu .brandbar-search .search.elf-advancedsearch-active .elf-advancedsearch-clear {
  position: absolute !important;
  top: 4px !important;
  bottom: 4px !important;
  margin: 0 !important;
  transform: none !important;
  z-index: 2008;
}

body.elf-advancedsearch-open #menu .search.search--desktop.elf-advancedsearch-active button[type="submit"],
body.elf-advancedsearch-open #menu .brandbar-search .search.elf-advancedsearch-active button[type="submit"] {
  right: 4px !important;
}

body.elf-advancedsearch-open #menu .search.search--desktop.elf-advancedsearch-active .elf-advancedsearch-clear,
body.elf-advancedsearch-open #menu .brandbar-search .search.elf-advancedsearch-active .elf-advancedsearch-clear {
  right: 50px !important;
}

.search.search--desktop.elf-advancedsearch-active .elf-advancedsearch-dropdown,
.brandbar-search .search.elf-advancedsearch-active .elf-advancedsearch-dropdown {
  z-index: 2008;
}

.elf-advancedsearch-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.2);
  max-height: 70vh;
  overflow: auto;
}

.elf-advancedsearch-dropdown.is-open {
  display: block;
}

.elf-advancedsearch-state {
  padding: 14px 16px;
  font-size: 13px;
  color: #334155;
}

.elf-advancedsearch-state.is-loading {
  font-weight: 700;
}

.elf-advancedsearch-section {
  border-bottom: 1px solid #eef2f8;
}

.elf-advancedsearch-section__title {
  margin: 0;
  padding: 10px 14px 8px;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 800;
}

.elf-advancedsearch-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.elf-advancedsearch-item {
  margin: 0;
  padding: 0;
}

.elf-advancedsearch-link {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  color: #0f172a;
  text-decoration: none;
}

.elf-advancedsearch-link:hover,
.elf-advancedsearch-link:focus {
  background: #f8fafc;
  text-decoration: none;
}

.elf-advancedsearch-item__media {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.elf-advancedsearch-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.elf-advancedsearch-item__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.elf-advancedsearch-item__name {
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.elf-advancedsearch-item__sku {
  font-size: 11px;
  color: #64748b;
  line-height: 1.2;
}

.elf-advancedsearch-item__price {
  font-size: 13px;
  color: #0f172a;
  font-weight: 800;
}

.elf-advancedsearch-link--category {
  padding-top: 9px;
  padding-bottom: 9px;
}

.elf-advancedsearch-link--vehicle {
  border-left: 3px solid #ffc701;
  padding-left: 11px;
}

.elf-advancedsearch-link--vehicle .elf-advancedsearch-item__name {
  font-weight: 800;
}

.elf-advancedsearch-footer {
  padding: 10px 14px;
  background: #f8fafc;
}

.elf-advancedsearch-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid #1e3a8a;
  border-radius: 8px;
  padding: 0 12px;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.elf-advancedsearch-view-all:hover,
.elf-advancedsearch-view-all:focus {
  background: #1e3a8a;
  color: #ffffff;
  text-decoration: none;
}

.elf-search-results-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(220px, .9fr);
  gap: 18px;
  align-items: center;
  margin: 0 0 24px;
  padding: 24px;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.elf-search-results-hero__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #475569;
}

.elf-search-results-hero__title {
  margin: 0;
  color: #0f172a;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.elf-search-results-hero__text {
  margin: 12px 0 0;
  max-width: 64ch;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.elf-search-results-hero__actions {
  display: flex;
  justify-content: flex-end;
}

.elf-search-results-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.elf-search-results-hero__cta:hover,
.elf-search-results-hero__cta:focus {
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
}

.elf-search-results-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 0 0 24px;
}

.elf-search-results-card {
  padding: 18px 18px 16px;
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
}

.elf-search-results-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.elf-search-results-card__title {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
}

.elf-search-results-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
}

.elf-search-results-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.elf-search-results-card__list li + li {
  margin-top: 8px;
}

.elf-search-results-card__list a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  text-decoration: none;
}

.elf-search-results-card__list a:hover,
.elf-search-results-card__list a:focus {
  background: #eef4fb;
  text-decoration: none;
}

.elf-search-results-card__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.elf-search-results-card__meta,
.elf-search-results-card__text {
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.search.results {
  margin-top: 8px;
}

.zoekresultaten-index-index,
.catalogsearch-result-index {
  --elf-search-page-bg: #f3f6fb;
  --elf-search-panel-bg: #ffffff;
  --elf-search-panel-line: #dbe4f0;
  --elf-search-panel-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.zoekresultaten-index-index .page-main,
.catalogsearch-result-index .page-main {
  background: #ffffff;
  background-image: none;
}

.zoekresultaten-index-index,
.zoekresultaten-index-index .page-wrapper,
.catalogsearch-result-index,
.catalogsearch-result-index .page-wrapper {
  background: #ffffff !important;
  background-image: none !important;
}

.zoekresultaten-index-index .elf-search-results-heading,
.catalogsearch-result-index .elf-search-results-heading {
  margin: 0 0 14px;
  color: #111827;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.zoekresultaten-index-index .toolbar-products .toolbar-amount,
.catalogsearch-result-index .toolbar-products .toolbar-amount {
  display: none;
}

.zoekresultaten-index-index .page-title-wrapper,
.catalogsearch-result-index .page-title-wrapper {
  display: none;
}

.zoekresultaten-index-index .page-main > .columns,
.catalogsearch-result-index .page-main > .columns {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 18px var(--gutter, 20px) 40px;
}

.zoekresultaten-index-index .column.main,
.catalogsearch-result-index .column.main {
  min-width: 0;
}

.zoekresultaten-index-index .sidebar.sidebar-main,
.catalogsearch-result-index .sidebar.sidebar-main {
  display: grid;
  gap: 16px;
  align-content: start;
}

.zoekresultaten-index-index .sidebar.sidebar-main .block,
.catalogsearch-result-index .sidebar.sidebar-main .block {
  margin: 0 !important;
}

.zoekresultaten-index-index .column.main > .search.results,
.catalogsearch-result-index .column.main > .search.results {
  display: grid;
  gap: 18px;
}

.zoekresultaten-index-index .search.results .message.notice,
.catalogsearch-result-index .search.results .message.notice {
  margin: 0;
  border: 1px solid var(--elf-search-panel-line);
  border-radius: 18px;
  background: var(--elf-search-panel-bg);
  box-shadow: var(--elf-search-panel-shadow);
}

.zoekresultaten-index-index .search.results .message.notice > div,
.catalogsearch-result-index .search.results .message.notice > div {
  padding: 18px 20px;
  color: #334155;
  line-height: 1.6;
}

.zoekresultaten-index-index .toolbar.toolbar-products,
.catalogsearch-result-index .toolbar.toolbar-products {
  margin: 0 0 18px;
}

.zoekresultaten-index-index .toolbar.toolbar-products .modes,
.catalogsearch-result-index .toolbar.toolbar-products .modes {
  display: none !important;
}

.zoekresultaten-index-index .block.filter,
.catalogsearch-result-index .block.filter {
  border: 1px solid var(--elf-search-panel-line);
  border-radius: 18px;
  background: var(--elf-search-panel-bg);
  box-shadow: var(--elf-search-panel-shadow);
  overflow: hidden;
}

.zoekresultaten-index-index .block.filter .filter-title,
.catalogsearch-result-index .block.filter .filter-title {
  margin: 0;
  padding: 16px 18px;
  background: #111827;
  color: #ffffff;
}

.zoekresultaten-index-index .block.filter .filter-title strong,
.catalogsearch-result-index .block.filter .filter-title strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.zoekresultaten-index-index .block.filter .filter-content,
.catalogsearch-result-index .block.filter .filter-content {
  padding: 16px 18px 18px;
}

.zoekresultaten-index-index .block.filter .filter-subtitle,
.catalogsearch-result-index .block.filter .filter-subtitle {
  display: block;
  margin: 0 0 12px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zoekresultaten-index-index .block.filter .filter-current,
.catalogsearch-result-index .block.filter .filter-current {
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fbff;
}

.zoekresultaten-index-index .block.filter .filter-current-subtitle,
.catalogsearch-result-index .block.filter .filter-current-subtitle {
  display: block;
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
}

.zoekresultaten-index-index .block.filter .filter-current .items,
.catalogsearch-result-index .block.filter .filter-current .items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.zoekresultaten-index-index .block.filter .filter-current .item,
.catalogsearch-result-index .block.filter .filter-current .item {
  margin: 0;
}

.zoekresultaten-index-index .block.filter .filter-current .action.remove,
.catalogsearch-result-index .block.filter .filter-current .action.remove {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.zoekresultaten-index-index .block.filter .filter-actions,
.catalogsearch-result-index .block.filter .filter-actions {
  margin: 0 0 14px;
}

.zoekresultaten-index-index .block.filter .action.clear,
.catalogsearch-result-index .block.filter .action.clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.zoekresultaten-index-index .block.filter .action.clear:hover,
.zoekresultaten-index-index .block.filter .action.clear:focus,
.catalogsearch-result-index .block.filter .action.clear:hover,
.catalogsearch-result-index .block.filter .action.clear:focus {
  border-color: #94a3b8;
  background: #f8fafc;
  color: #0f172a;
  text-decoration: none;
}

.zoekresultaten-index-index .block.filter .filter-options,
.catalogsearch-result-index .block.filter .filter-options {
  margin: 0;
}

.zoekresultaten-index-index .block.filter .filter-options-title,
.catalogsearch-result-index .block.filter .filter-options-title {
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid #eef2f7;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.zoekresultaten-index-index .block.filter .filter-options-title:first-of-type,
.catalogsearch-result-index .block.filter .filter-options-title:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.zoekresultaten-index-index .block.filter .filter-options-content,
.catalogsearch-result-index .block.filter .filter-options-content {
  padding: 0 0 10px;
}

.zoekresultaten-index-index .block.filter .filter-options-content .items,
.catalogsearch-result-index .block.filter .filter-options-content .items {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.zoekresultaten-index-index .block.filter .filter-options-content .item,
.catalogsearch-result-index .block.filter .filter-options-content .item {
  margin: 0;
}

.zoekresultaten-index-index .block.filter .filter-options-content .item a,
.catalogsearch-result-index .block.filter .filter-options-content .item a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fbfdff;
  color: #1e293b;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.zoekresultaten-index-index .block.filter .filter-options-content .item a:hover,
.zoekresultaten-index-index .block.filter .filter-options-content .item a:focus,
.catalogsearch-result-index .block.filter .filter-options-content .item a:hover,
.catalogsearch-result-index .block.filter .filter-options-content .item a:focus {
  border-color: #cbd5e1;
  background: #f5f9ff;
  color: #0f172a;
  text-decoration: none;
}

.zoekresultaten-index-index .block.filter .filter-options-content .count,
.catalogsearch-result-index .block.filter .filter-options-content .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.zoekresultaten-index-index .elf-search-results-hero,
.catalogsearch-result-index .elf-search-results-hero {
  margin: 0 0 20px;
}

.zoekresultaten-index-index .elf-search-results-panels,
.catalogsearch-result-index .elf-search-results-panels {
  margin: 0 0 20px;
}

@media (min-width: 992px) {
  .zoekresultaten-index-index .page-main > .columns,
  .catalogsearch-result-index .page-main > .columns {
    display: grid !important;
    grid-template-columns: minmax(250px, 290px) minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: start;
  }

  .zoekresultaten-index-index .page-main > .columns .sidebar.sidebar-main,
  .catalogsearch-result-index .page-main > .columns .sidebar.sidebar-main {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    grid-column: 1;
    position: sticky;
    top: 128px;
  }

  .zoekresultaten-index-index .page-main > .columns .column.main,
  .catalogsearch-result-index .page-main > .columns .column.main {
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    grid-column: 2;
  }

  .zoekresultaten-index-index .column.main .products.wrapper.grid.products-grid,
  .catalogsearch-result-index .column.main .products.wrapper.grid.products-grid {
    display: block !important;
    width: 100% !important;
  }

  .zoekresultaten-index-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items,
  .catalogsearch-result-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .zoekresultaten-index-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items:before,
  .zoekresultaten-index-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items:after,
  .catalogsearch-result-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items:before,
  .catalogsearch-result-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items:after {
    content: none !important;
    display: none !important;
  }

  .zoekresultaten-index-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items > .product-item,
  .catalogsearch-result-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items > .product-item {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
  }

  .zoekresultaten-index-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items > .product-item .product-item-info,
  .catalogsearch-result-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items > .product-item .product-item-info {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    height: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .zoekresultaten-index-index .page-main > .columns,
  .catalogsearch-result-index .page-main > .columns {
    display: block !important;
  }

  .zoekresultaten-index-index .page-main > .columns .sidebar.sidebar-main,
  .zoekresultaten-index-index .page-main > .columns .column.main,
  .catalogsearch-result-index .page-main > .columns .sidebar.sidebar-main,
  .catalogsearch-result-index .page-main > .columns .column.main {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
  }

  .zoekresultaten-index-index .column.main .products.wrapper.grid.products-grid,
  .catalogsearch-result-index .column.main .products.wrapper.grid.products-grid {
    display: block !important;
    width: 100% !important;
  }

  .zoekresultaten-index-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items,
  .catalogsearch-result-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .zoekresultaten-index-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items > .product-item,
  .catalogsearch-result-index .column.main .products.wrapper.grid.products-grid > .products.list.items.product-items > .product-item {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
  }
}

@media (max-width: 767px) {
  .zoekresultaten-index-index .elf-search-results-heading,
  .catalogsearch-result-index .elf-search-results-heading {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .brandbar-search.search--mobile .search .elf-advancedsearch-clear,
  .brandbar-search.search--mobile .search .elf-advancedsearch-clear:hover,
  .brandbar-search.search--mobile .search .elf-advancedsearch-clear:focus {
    border: 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
  }

  .brandbar-search.search--mobile .search .elf-advancedsearch-clear .icon {
    color: #ffffff !important;
    fill: #ffffff !important;
  }

  .brandbar-search .search .elf-advancedsearch-dropdown {
    top: calc(100% + 2px);
    border-radius: 3px;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.22);
    max-height: 60vh;
  }

  .elf-advancedsearch-link {
    padding: 10px 12px;
  }

  .elf-advancedsearch-section__title {
    padding-left: 12px;
    padding-right: 12px;
  }

  .elf-advancedsearch-footer {
    padding: 10px 12px;
  }

  .elf-advancedsearch-view-all {
    width: 100%;
  }

  .elf-search-results-hero {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .elf-search-results-hero__title {
    font-size: 24px;
  }

  .elf-search-results-hero__actions {
    justify-content: flex-start;
  }

  .elf-search-results-hero__cta {
    width: 100%;
  }
}




/* Search results stabilization */
.catalogsearch-result-index .page-main {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.catalogsearch-result-index .columns {
  max-width: var(--container, 1160px);
  margin: 0 auto;
  padding: 18px var(--gutter, 20px) 40px;
}

.catalogsearch-result-index .sidebar.sidebar-additional {
  display: none !important;
}

.catalogsearch-result-index .sidebar.sidebar-main {
  display: grid;
  gap: 14px;
  align-content: start;
}

.catalogsearch-result-index .sidebar.sidebar-main .block,
.catalogsearch-result-index .sidebar.sidebar-main .sidebar-block {
  margin: 0 !important;
}

.catalogsearch-result-index .column.main {
  min-width: 0;
}

.catalogsearch-result-index .column.main > .search.results {
  display: grid;
  gap: 18px;
}

.catalogsearch-result-index .block.filter {
  border-radius: 16px;
  overflow: hidden;
}

.catalogsearch-result-index .block.filter .filter-title {
  margin: 0;
  padding: 16px 18px;
  background: #111827;
  color: #ffffff;
}

.catalogsearch-result-index .block.filter .filter-title strong {
  font-size: 15px;
  font-weight: 800;
}

.catalogsearch-result-index .block.filter .filter-content {
  padding: 16px 18px 18px;
}

.catalogsearch-result-index .toolbar.toolbar-products {
  margin: 0;
}

.catalogsearch-result-index .toolbar.toolbar-products.toolbar--footer {
  margin-top: 18px;
}

.catalogsearch-result-index .products.wrapper.grid.products-grid {
  margin-top: 0;
}

@media (min-width: 992px) {
  .catalogsearch-result-index .columns {
    display: grid !important;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: start;
  }

  .catalogsearch-result-index .columns .sidebar.sidebar-main {
    width: auto !important;
    max-width: 280px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    position: sticky;
    top: 128px;
  }

  .catalogsearch-result-index .columns .column.main {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    min-width: 0;
  }
}

@media (max-width: 991px) {
  .catalogsearch-result-index .columns {
    display: block !important;
  }

  .catalogsearch-result-index .columns .sidebar.sidebar-main,
  .catalogsearch-result-index .columns .column.main {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
  }
}

/* Search results flat white layer */
.zoekresultaten-index-index,
.catalogsearch-result-index,
.zoekresultaten-index-index .page-main,
.catalogsearch-result-index .page-main,
.zoekresultaten-index-index .columns,
.catalogsearch-result-index .columns,
.zoekresultaten-index-index .column.main,
.catalogsearch-result-index .column.main,
.zoekresultaten-index-index .sidebar.sidebar-main,
.catalogsearch-result-index .sidebar.sidebar-main,
.zoekresultaten-index-index .column.main > .search.results,
.catalogsearch-result-index .column.main > .search.results,
.zoekresultaten-index-index .products.wrapper,
.catalogsearch-result-index .products.wrapper,
.zoekresultaten-index-index .products.list.items,
.catalogsearch-result-index .products.list.items,
.zoekresultaten-index-index .products-grid,
.catalogsearch-result-index .products-grid {
  background: #ffffff !important;
  background-image: none !important;
}

.zoekresultaten-index-index .elf-search-results-hero,
.catalogsearch-result-index .elf-search-results-hero,
.zoekresultaten-index-index .elf-search-results-card,
.catalogsearch-result-index .elf-search-results-card,
.zoekresultaten-index-index .toolbar,
.zoekresultaten-index-index .toolbar-products,
.catalogsearch-result-index .toolbar,
.catalogsearch-result-index .toolbar-products,
.zoekresultaten-index-index .block.filter,
.catalogsearch-result-index .block.filter,
.zoekresultaten-index-index .block.filter .filter-title,
.catalogsearch-result-index .block.filter .filter-title,
.zoekresultaten-index-index .block.filter .filter-content,
.catalogsearch-result-index .block.filter .filter-content,
.zoekresultaten-index-index .search.results .message.notice,
.catalogsearch-result-index .search.results .message.notice,
.zoekresultaten-index-index .search.results .message.notice > div,
.catalogsearch-result-index .search.results .message.notice > div,
.zoekresultaten-index-index .products-grid .product-item-info,
.catalogsearch-result-index .products-grid .product-item-info,
.zoekresultaten-index-index .products-list .product-item-info,
.catalogsearch-result-index .products-list .product-item-info,
.zoekresultaten-index-index .block.filter .filter-current,
.catalogsearch-result-index .block.filter .filter-current,
.zoekresultaten-index-index .block.filter .filter-options-content .item a,
.catalogsearch-result-index .block.filter .filter-options-content .item a,
.zoekresultaten-index-index .block.filter .filter-current .action.remove,
.catalogsearch-result-index .block.filter .filter-current .action.remove,
.zoekresultaten-index-index .block.filter .action.clear,
.catalogsearch-result-index .block.filter .action.clear,
.zoekresultaten-index-index .block.filter .filter-options-content .count,
.catalogsearch-result-index .block.filter .filter-options-content .count,
.zoekresultaten-index-index .elf-search-results-card__list a,
.catalogsearch-result-index .elf-search-results-card__list a,
.zoekresultaten-index-index .elf-search-results-card__count,
.catalogsearch-result-index .elf-search-results-card__count,
.zoekresultaten-index-index .elf-search-results-hero__cta,
.catalogsearch-result-index .elf-search-results-hero__cta,
.zoekresultaten-index-index .products-grid .action.tocart,
.catalogsearch-result-index .products-grid .action.tocart,
.zoekresultaten-index-index .products-list .action.tocart,
.catalogsearch-result-index .products-list .action.tocart {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.zoekresultaten-index-index .elf-search-results-hero,
.catalogsearch-result-index .elf-search-results-hero,
.zoekresultaten-index-index .elf-search-results-card,
.catalogsearch-result-index .elf-search-results-card,
.zoekresultaten-index-index .toolbar,
.zoekresultaten-index-index .toolbar-products,
.catalogsearch-result-index .toolbar,
.catalogsearch-result-index .toolbar-products,
.zoekresultaten-index-index .block.filter,
.catalogsearch-result-index .block.filter,
.zoekresultaten-index-index .search.results .message.notice,
.catalogsearch-result-index .search.results .message.notice,
.zoekresultaten-index-index .products-grid .product-item-info,
.catalogsearch-result-index .products-grid .product-item-info,
.zoekresultaten-index-index .products-list .product-item-info,
.catalogsearch-result-index .products-list .product-item-info,
.zoekresultaten-index-index .products-grid .action.tocart,
.catalogsearch-result-index .products-grid .action.tocart,
.zoekresultaten-index-index .products-list .action.tocart,
.catalogsearch-result-index .products-list .action.tocart,
.zoekresultaten-index-index .elf-search-results-hero__cta,
.catalogsearch-result-index .elf-search-results-hero__cta {
  background: #ffffff !important;
  background-image: none !important;
}

.zoekresultaten-index-index .products-grid .product-item-info:hover,
.catalogsearch-result-index .products-grid .product-item-info:hover,
.zoekresultaten-index-index .products-list .product-item-info:hover,
.catalogsearch-result-index .products-list .product-item-info:hover {
  transform: none !important;
  box-shadow: none !important;
}

.zoekresultaten-index-index .elf-search-results-hero,
.catalogsearch-result-index .elf-search-results-hero,
.zoekresultaten-index-index .elf-search-results-card,
.catalogsearch-result-index .elf-search-results-card,
.zoekresultaten-index-index .toolbar,
.zoekresultaten-index-index .toolbar-products,
.catalogsearch-result-index .toolbar,
.catalogsearch-result-index .toolbar-products,
.zoekresultaten-index-index .block.filter,
.catalogsearch-result-index .block.filter,
.zoekresultaten-index-index .search.results .message.notice,
.catalogsearch-result-index .search.results .message.notice,
.zoekresultaten-index-index .products-grid .product-item-info,
.catalogsearch-result-index .products-grid .product-item-info,
.zoekresultaten-index-index .products-list .product-item-info,
.catalogsearch-result-index .products-list .product-item-info {
  border-color: #d9dee7 !important;
}

.zoekresultaten-index-index .block.filter .filter-title,
.catalogsearch-result-index .block.filter .filter-title,
.zoekresultaten-index-index .block.filter .filter-title strong,
.catalogsearch-result-index .block.filter .filter-title strong,
.zoekresultaten-index-index .elf-search-results-hero__cta,
.catalogsearch-result-index .elf-search-results-hero__cta,
.zoekresultaten-index-index .products-grid .action.tocart,
.catalogsearch-result-index .products-grid .action.tocart,
.zoekresultaten-index-index .products-list .action.tocart,
.catalogsearch-result-index .products-list .action.tocart {
  color: #0f172a !important;
}

.zoekresultaten-index-index .elf-search-results-hero__cta,
.catalogsearch-result-index .elf-search-results-hero__cta,
.zoekresultaten-index-index .products-grid .action.tocart,
.catalogsearch-result-index .products-grid .action.tocart,
.zoekresultaten-index-index .products-list .action.tocart,
.catalogsearch-result-index .products-list .action.tocart,
.zoekresultaten-index-index .block.filter .action.clear,
.catalogsearch-result-index .block.filter .action.clear,
.zoekresultaten-index-index .block.filter .filter-current .action.remove,
.catalogsearch-result-index .block.filter .filter-current .action.remove,
.zoekresultaten-index-index .block.filter .filter-options-content .item a,
.catalogsearch-result-index .block.filter .filter-options-content .item a {
  border-color: #d9dee7 !important;
}


/* Search results use the same card markup as category pages. Keep images visible under search-specific overrides. */
.zoekresultaten-index-index .products-grid .product-card .product-media,
.catalogsearch-result-index .products-grid .product-card .product-media {
  display: block !important;
  position: relative !important;
  height: 180px !important;
  min-height: 180px !important;
  background: #f1f3f6 !important;
  overflow: hidden !important;
}

.zoekresultaten-index-index .products-grid .product-card .product-media img,
.catalogsearch-result-index .products-grid .product-card .product-media img {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Match search result product cards to category product cards. */
.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 100%;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card,
.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-media,
.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-body,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-media,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-body {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card:hover,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-body,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-body {
  flex: 1 1 auto;
  padding: 5px 0 0 0;
  gap: 4px;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-title,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-title {
  min-height: calc(1.4em * 2);
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-title__link,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-title__link {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-price .price-box,
.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-price .price-box .price-container,
.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-price .price-box .normal-price,
.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-price .price-box .special-price,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-price .price-box,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-price .price-box .price-container,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-price .price-box .normal-price,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-price .price-box .special-price {
  margin: 0;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-actions,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .cp-product-card-review,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .cp-product-card-review {
  gap: 6px;
  margin: -2px 0 4px;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .cp-product-card-review__stars,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .cp-product-card-review__stars {
  font-size: 18px;
  letter-spacing: 1.8px;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .stock,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .stock__icon,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .stock__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  flex: 0 0 16px;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .stock__icon::before,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .stock__icon::before {
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .stock.in-stock,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .stock.in-stock {
  color: #15803d;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .stock.in-stock .stock__icon,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .stock.in-stock .stock__icon {
  background: #16a34a;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .stock.in-stock .stock__icon::before,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .stock.in-stock .stock__icon::before {
  content: '\2713';
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .stock.out-of-stock,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .stock.out-of-stock {
  color: #dc2626;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .stock.out-of-stock .stock__icon,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .stock.out-of-stock .stock__icon {
  background: #dc2626;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .stock.out-of-stock .stock__icon::before,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .stock.out-of-stock .stock__icon::before {
  content: '\2715';
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-card-cta,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-card-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  max-width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 0 !important;
  border-radius: 10px !important;
  background: #16a34a !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.16s ease, transform 0.16s ease;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-card-cta:hover,
.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-card-cta:focus,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-card-cta:hover,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-card-cta:focus {
  background: #15803d !important;
  color: #fff !important;
  text-decoration: none;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-card-cta__icon,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-card-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-card-cta__icon svg,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-card-cta__icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-card-cta--disabled,
.catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-card-cta--disabled {
  background: #cbd5e1 !important;
  color: #fff !important;
  pointer-events: none;
}

@media (max-width: 767px) {
  .zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-meta,
  .catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .zoekresultaten-index-index .column.main .product-items--card-grid > .product-card .product-title,
  .catalogsearch-result-index .column.main .product-items--card-grid > .product-card .product-title {
    min-height: auto;
  }
}
