.search-wrapper .ais-SearchBox-form {
  background-color: transparent;
  height: 40px;
  font-size: 17px;
  line-height: 1.2rem;
}
.search-wrapper .ais-SearchBox-form::before {
  display: none;
}
.search-wrapper .ais-SearchBox-form .ais-SearchBox-input {
  background-color: #fff;
  border: 1px solid #dc130c;
  border-radius: 6px;
  box-shadow: rgba(119, 122, 175, 0.3) 0 1px 4px 0 inset;
  caret-color: #8c8c8c;
  color: #8c8c8c;
  flex: 1 1 0%;
  font: inherit;
  max-width: 100%;
  padding-left: 2.5rem;
}
.search-wrapper .ais-SearchBox-form .ais-SearchBox-input::placeholder {
  color: #8c8c8c;
}
.search-wrapper .ais-SearchBox-form .ais-SearchBox {
  position: relative;
}
.search-wrapper .ais-SearchBox-form .ais-SearchBox-submit {
  display: block;
  height: 20px;
  position: absolute;
  right: 10px;
  /* Abstand vom Rand → anpassen */
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.search-wrapper .ais-SearchBox-form .ais-SearchBox-submit .ais-SearchBox-submitIcon {
  width: 17px;
  height: 17px;
}
.search-wrapper .ais-SearchBox-form .ais-SearchBox-reset {
  position: absolute;
  right: 30px;
  /* links vom Submit */
}
#search-results .ais-Hits-list {
  padding: 0;
}
#search-results .ais-Hits .ais-Hits-item {
  width: 215px;
  background: inherit;
  box-shadow: inherit;
  display: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  padding: inherit;
}
#search-results .ais-Hits .ais-Hits-item a {
  display: flex;
}
/* Dropdown */
#autocomplete-dropdown {
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.375rem -0.25rem #1f3a541a, 0 0.25rem 1.5rem 0.5rem #1f3a5412;
  padding: 1rem 0.75rem;
  position: absolute;
  transition: opacity 0.5s ease-in, filter 0.5s ease-in;
  z-index: 1000;
  max-height: 365px;
  overflow-y: auto;
  -ms-overflow-y: auto;
}
#autocomplete-dropdown li.ais-Hits-item {
  float: unset;
  font-size: inherit;
}
#autocomplete-dropdown li.ais-Hits-item .autocomplete-item {
  display: flex;
  padding: 8px;
  cursor: pointer;
  width: 100%;
}
#autocomplete-dropdown li.ais-Hits-item .autocomplete-item a {
  height: unset;
  border: unset;
  padding: unset;
}
#autocomplete-dropdown li.ais-Hits-item .autocomplete-item a .title {
  color: #4a4f62;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.autocomplete-item:hover {
  background: #f5f5f5;
}
/* zum Flex-Container machen */
.autocomplete-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
/* Bild fixieren */
.autocomplete-item .thumb {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  object-fit: cover;
}
/* Textbereich kontrollieren */
.autocomplete-item .title {
  flex: 1;
  display: block;
  white-space: normal;
  line-height: 1.2;
}
/* Dropdown Overlay */
.filter-group {
  position: relative;
  display: inline-block;
}
.filter-dropdown {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 280px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 16px;
  z-index: 5000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.filter-dropdown .ais-RefinementList-item {
  font-size: inherit;
}
.filter-dropdown .ais-RefinementList-item .ais-RefinementList-labelText {
  font-weight: 400;
}
.filter-dropdown .ais-RefinementList-checkbox {
  margin: 1rem;
  height: 1.5rem;
  min-width: 1.5rem;
}
.filter-dropdown .ais-RefinementList-count {
  font-size: inherit;
  line-height: 2rem;
  padding: 0 1rem;
}
/* CSS für Button + Animation */
/* ---------- Toggle Button ---------- */
.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 3px;
  border: 2px solid #ccc;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.12);
  margin-bottom: 12px;
  padding: 4px 16px 4px 16px;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, fill 0.3s ease-in-out;
}
/* Chevron */
.filter-toggle .chevron {
  transition: transform 0.3s ease;
}
/* ---------- AKTIV ---------- */
.filter-toggle.active {
  background-color: #666;
  color: #fefefe;
  border-color: #666;
}
.filter-toggle.active .chevron {
  transform: rotate(180deg);
  /* ✅ dreht Pfeil nach oben */
  fill: #fff;
}
/* Alle zurücksetzen */
.ais-ClearRefinements-button.reset-filter-btn {
  background-color: #666;
  background-image: unset;
  color: #fefefe;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 0;
  border-radius: 3px;
  border-style: solid;
  border-width: 2px;
  border-color: #ccc;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-size: 1em;
  line-height: 1.5;
  padding: 10px 16px;
  position: relative;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  height: auto;
}
/* Buttons rechts neben Reset, neue rechts anhängen */
.brand-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
/* Liste der Markenbuttons */
#brand-active-buttons .brand-btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
/* "brand" label ausblenden */
#brand-active-buttons .brand-btn-attrlabel {
  display: none;
}
/* Markenbutton: weiß, Rahmen #666, Text #666 */
#brand-active-buttons .brand-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #666;
  border-radius: 3px;
  color: #666;
  padding: 6px 10px;
}
#brand-active-buttons .brand-btn-label {
  color: #666;
}
/* X als SVG (per Mask) + Hover nur auf X */
#brand-active-buttons .brand-btn-delete {
  border: 0;
  background: transparent;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  color: #666;
  /* X-Farbe im Normalzustand */
}
/* Hover nur auf X */
#brand-active-buttons .brand-btn-delete:hover {
  background: #666;
  /* runde Fläche */
  color: #fff;
  /* X weiß */
}
/* Container für Marken-Rücksetzen-Button */
.ais-CurrentRefinements-item {
  background-color: transparent;
  border: none;
  font-size: inherit;
  line-height: 1.5;
  min-height: 1.5rem;
  padding: 0.05rem 0.5rem;
}
/* NEU: Algolia Pagination */
.algolia-pagination {
  margin: 40px 0;
  text-align: center;
}
.algolia-pagination-list {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.algolia-pagination-link {
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  font-size: inherit;
  color: #666;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  min-width: 40px;
}
.algolia-pagination-item--active .algolia-pagination-link {
  background: #666;
  border-color: #666;
  color: #fff;
}
.algolia-pagination-item--disabled {
  opacity: 0.35;
  pointer-events: none;
}
.filter-toggle.filter-toggle--disabled,
.filter-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.ais-ClearRefinements-button:disabled[disabled],
.ais-InfiniteHits-loadMore:disabled[disabled],
.ais-InfiniteHits-loadPrevious:disabled[disabled],
.ais-Pagination-item--disabled .ais-Pagination-link,
.ais-GeoSearch-redo--disabled,
.ais-GeoSearch-reset--disabled,
.ais-VoiceSearch-button:disabled {
  color: #aaa;
}
/*# sourceMappingURL=algoliasearch.css.map */