/* Fulfillment-Center-Suche – Layout-Ergänzungen zu Base-Widgets (mobile-first) */

.fulfillment-center-search-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Filter-Sidebar: Karten-Layout, Schatten, Sticky-Scroll */
.fulfillment-center-search-filters {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.9rem;
  box-shadow: var(--shadow-sm), 0 10px 28px rgba(15, 17, 17, 0.05);
  padding: 0.875rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Filter-Header mit Trennlinie und Abstand */
.fulfillment-center-search-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--color-border);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Filter-Titel mit Icon und Typografie */
.fulfillment-center-search-filter-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-headline);
  letter-spacing: 0.01em;
  line-height: var(--line-height-normal);
}

.fulfillment-center-search-filter-title::before {
  content: '';
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  background-color: var(--color-primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.fulfillment-center-search-filter-toggle,
.fulfillment-center-search-filter-close {
  display: none;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Mobile Schließen-Button */
.fulfillment-center-search-filter-close {
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background-color: var(--color-surface);
  color: var(--color-text-muted);
  font-size: var(--font-size-xl);
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.fulfillment-center-search-filter-close:hover {
  border-color: var(--color-border-highlight);
  background-color: var(--color-surface-hover);
  color: var(--color-text);
}

.fulfillment-center-search-filter-close:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-focus-shadow);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Filter-Formular vertikaler Rhythmus */
.fulfillment-center-search-filter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Accordion-Sektion – overflow visible für native Select-Dropdowns */
.fulfillment-center-search-filter-section {
  margin-bottom: 0;
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  background-color: var(--color-surface-hover);
  overflow: visible;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fulfillment-center-search-filter-section[open] {
  border-color: var(--color-primary-soft-border);
  box-shadow: inset 0 0 0 1px var(--color-primary-soft-bg);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Accordion-Summary mit Chevron */
.fulfillment-center-search-filter-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  cursor: pointer;
  list-style: none;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  padding: 0.5625rem 0.625rem;
  margin-bottom: 0;
  user-select: none;
  border-radius: 0.625rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.fulfillment-center-search-filter-section[open] .fulfillment-center-search-filter-section-title {
  border-radius: 0.625rem 0.625rem 0 0;
}

.fulfillment-center-search-filter-section-title::-webkit-details-marker {
  display: none;
}

.fulfillment-center-search-filter-section-title::marker {
  content: '';
}

.fulfillment-center-search-filter-section-title::after {
  content: '';
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: rotate(45deg);
  margin-top: -0.125rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.fulfillment-center-search-filter-section[open] .fulfillment-center-search-filter-section-title::after {
  transform: rotate(-135deg);
  margin-top: 0.125rem;
  border-color: var(--color-primary);
}

.fulfillment-center-search-filter-section-title:hover {
  background-color: var(--color-primary-soft-bg);
  color: var(--color-headline);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Sektions-Inhalt mit Innenabstand */
.fulfillment-center-search-filter-section-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 0.625rem 0.625rem;
  border-radius: 0 0 0.625rem 0.625rem;
  overflow: visible;
}

.fulfillment-center-search-filter-group {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.fulfillment-center-search-filter-group:focus-within {
  z-index: 20;
}

.fulfillment-center-search-filter-group:last-child {
  margin-bottom: 0;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Select-Felder an base-form-input angeglichen */
.fulfillment-center-search-filter-select {
  width: 100%;
  min-height: 2.125rem;
  display: block;
  position: relative;
  z-index: 1;
  appearance: none;
  -webkit-appearance: none;
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-normal);
  line-height: 1.35;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.4375rem;
  padding: 0.375rem 1.75rem 0.375rem 0.5625rem;
  box-sizing: border-box;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23565959' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.fulfillment-center-search-filter-select:hover {
  border-color: var(--color-border-highlight);
  background-color: var(--color-surface-hover);
}

.fulfillment-center-search-filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-focus-shadow);
  z-index: 25;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Ergebnis-Spalte als flexibles Layout */
.fulfillment-center-search-results {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Änderungsprotokoll: 2026-07-07 | parent-agent | @skill-css-rules | Mobile Filter-Toolbar mit Karten-Optik */
.fulfillment-center-search-toolbar {
  margin-bottom: 1rem;
}

/* Änderungsprotokoll: 2026-07-07 | parent-agent | @skill-css-rules | Mobile Filter-Button an Suchfeld und Sidebar angeglichen */
.fulfillment-center-search-filter-mobile-open {
  display: grid;
  grid-template-columns: 1.125rem 1fr 1rem;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--color-headline);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  box-shadow: var(--shadow-sm), 0 4px 14px rgba(15, 17, 17, 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.fulfillment-center-search-filter-mobile-open::before {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  background-color: var(--color-primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.fulfillment-center-search-filter-mobile-open::after {
  content: '';
  width: 1rem;
  height: 1rem;
  justify-self: end;
  background-color: var(--color-text-muted);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.fulfillment-center-search-filter-mobile-open:hover {
  border-color: var(--color-border-highlight);
  background-color: var(--color-surface-hover);
  box-shadow: var(--shadow-sm), 0 6px 18px rgba(15, 17, 17, 0.06);
}

.fulfillment-center-search-filter-mobile-open:active {
  transform: scale(0.992);
  box-shadow: var(--shadow-sm);
}

.fulfillment-center-search-filter-mobile-open:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm), 0 0 0 3px var(--color-primary-focus-shadow);
}

.fulfillment-center-search-filter-mobile-open[aria-expanded='true'] {
  border-color: var(--color-primary-soft-border);
  background-color: var(--color-primary-soft-bg);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255, 153, 0, 0.08);
}

.fulfillment-center-search-filter-mobile-open[aria-expanded='true']::after {
  background-color: var(--color-primary);
  transform: translateX(1px);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Suchzeile mit Icon und Karten-Rahmen */
.fulfillment-center-search-query-row {
  position: relative;
  margin-bottom: 1.25rem;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Suchfeld gross, mit Lupe-Icon und Focus-Ring */
.fulfillment-center-search-query-input {
  width: 100%;
  min-height: 2.75rem;
  appearance: none;
  -webkit-appearance: none;
  font-size: var(--font-size-base);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  padding: 0.8125rem 1rem 0.8125rem 2.75rem;
  box-sizing: border-box;
  box-shadow: var(--shadow-sm);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23565959' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0.875rem center;
  background-size: 1.125rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.fulfillment-center-search-query-input::placeholder {
  color: var(--color-text-muted);
}

.fulfillment-center-search-query-input:hover {
  border-color: var(--color-border-highlight);
  background-color: var(--color-surface-hover);
}

.fulfillment-center-search-query-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm), 0 0 0 3px var(--color-primary-focus-shadow);
  background-color: var(--color-surface);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Autosuggest-Dropdown an Filter-Stil angeglichen */
.fulfillment-center-search-query-autosuggest {
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
  right: 0;
  z-index: 20;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  box-shadow: var(--shadow-md), 0 12px 28px rgba(15, 17, 17, 0.08);
  overflow: hidden;
  padding: 0.25rem 0;
}

.fulfillment-center-search-query-autosuggest-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.625rem 1rem;
  border: 0;
  background-color: transparent;
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  color: var(--color-text);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.fulfillment-center-search-query-autosuggest-item:hover {
  background-color: var(--color-primary-soft-bg);
  color: var(--color-headline);
}

.fulfillment-center-search-query-autosuggest-item.is-active {
  background-color: var(--color-primary-soft-bg);
  color: var(--color-headline);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Ladezustand waehrend AJAX-Suche */
.fulfillment-center-search-results.is-searching {
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Ergebnis-Zaehler mit hervorgehobener Zahl */
.fulfillment-center-search-results-count {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.375rem 0.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  box-shadow: var(--shadow-sm);
}

.fulfillment-center-search-results-count-number {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.fulfillment-center-search-results-count-suffix {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  color: var(--color-text-muted);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Aktive Filter-Chips im Orange-Theme */
.fulfillment-center-search-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.fulfillment-center-search-active-filters:empty {
  display: none;
  margin-bottom: 0;
}

.fulfillment-center-search-active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3125rem 0.5rem 0.3125rem 0.75rem;
  border-radius: 999px;
  background-color: var(--color-primary-soft-bg);
  border: 1px solid var(--color-primary-soft-border);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  line-height: 1.35;
}

.fulfillment-center-search-active-filter-chip-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.fulfillment-center-search-active-filter-chip-remove:hover {
  background-color: var(--color-primary);
  color: var(--color-text-on-primary);
}

.fulfillment-center-search-active-filter-chip-remove:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-primary-focus-shadow);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Ergebnisliste mit groesserem Kartenabstand */
.fulfillment-center-search-results-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Ergebnis-Karte: linksbuendig, Akzentleiste, Hover */
.fulfillment-center-search-result-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  justify-items: stretch;
  text-align: left;
  padding: 1.25rem 1.375rem 1.125rem;
  gap: 1rem;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.fulfillment-center-search-result-card-body {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  overflow-wrap: anywhere;
}

.fulfillment-center-search-result-card-preview {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
  background-color: var(--color-surface);
}

.fulfillment-center-search-result-phone-link {
  display: inline-flex;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 1.155rem;
  transition: transform 0.22s ease;
}

.fulfillment-center-search-result-phone-link:hover {
  text-decoration: none;
}

.fulfillment-center-search-result-phone-link:hover .fulfillment-center-search-result-phone-frame {
  border-color: #4a4a52;
  box-shadow:
    0 16px 32px rgba(15, 17, 17, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.fulfillment-center-search-result-phone-link:focus {
  outline: none;
}

.fulfillment-center-search-result-phone-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.fulfillment-center-search-result-phone-frame {
  position: relative;
  width: 8.05rem;
  max-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0.315rem 0.315rem 0.455rem;
  border-radius: 1.155rem;
  background: linear-gradient(145deg, #2b2b2f 0%, #111114 55%, #1d1d22 100%);
  border: 2px solid #3a3a40;
  box-shadow:
    0 14px 28px rgba(15, 17, 17, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.fulfillment-center-search-result-phone-notch {
  position: absolute;
  top: 0.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 0.294rem;
  border-radius: 999px;
  background: #0a0a0c;
  z-index: 2;
}

.fulfillment-center-search-result-phone-screen {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: 0.84rem;
  background: #0a0a0c;
  width: 100%;
}

.fulfillment-center-search-result-phone-image-skeleton {
  grid-area: 1 / 1;
  width: 100%;
  aspect-ratio: 375 / 812;
  z-index: 1;
  background: linear-gradient(
    110deg,
    #141418 0%,
    #1e1e24 38%,
    #2c2c34 50%,
    #1e1e24 62%,
    #141418 100%
  );
  background-size: 220% 100%;
  animation: fulfillment-center-search-phone-image-shimmer 1.35s ease-in-out infinite;
  transition: opacity 0.35s ease;
}

/* Änderungsprotokoll: 2026-07-08 | user-request | @skill-css-rules, @skill-change-provenance | Ladezustand is-image-loading für async Lazy Loading */
.fulfillment-center-search-result-phone-screen.is-image-loading .fulfillment-center-search-result-phone-image-skeleton {
  opacity: 1;
}

.fulfillment-center-search-result-phone-screen.is-image-loaded .fulfillment-center-search-result-phone-image-skeleton {
  opacity: 0;
  pointer-events: none;
}

.fulfillment-center-search-result-phone-screen.is-image-error .fulfillment-center-search-result-phone-image-skeleton {
  animation: none;
  background: #141418;
}

.fulfillment-center-search-result-phone-image {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fulfillment-center-search-result-phone-screen.is-image-loaded .fulfillment-center-search-result-phone-image {
  opacity: 1;
  transform: scale(1);
}

@keyframes fulfillment-center-search-phone-image-shimmer {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

.fulfillment-center-search-result-phone-home-indicator {
  width: 34%;
  height: 0.154rem;
  margin: 0.315rem auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.fulfillment-center-search-result-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.fulfillment-center-search-result-card:hover {
  border-color: var(--color-primary-soft-border);
  box-shadow: var(--shadow-md), 0 12px 32px rgba(15, 17, 17, 0.06);
  transform: translateY(-1px);
}

.fulfillment-center-search-result-card:hover::before {
  opacity: 1;
}

/* Änderungsprotokoll: 2026-07-07 | parent-agent | @skill-css-rules | Firmenname als hochwertiger Karten-Titel mit Akzentlinie */
.fulfillment-center-search-result-name {
  position: relative;
  width: 100%;
  margin: 0 0 0.625rem;
  padding: 0 0 0.8125rem;
  border-bottom: none;
  color: var(--color-headline);
  font-size: clamp(1.0625rem, 0.5vw + 0.95rem, 1.3125rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.028em;
  line-height: 1.2;
  text-wrap: balance;
}

.fulfillment-center-search-result-name::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--color-border) 0%,
    rgba(213, 217, 217, 0.35) 72%,
    transparent 100%
  );
}

.fulfillment-center-search-result-name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.75rem;
  height: 0.1875rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  box-shadow: 0 1px 4px rgba(255, 153, 0, 0.28);
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.fulfillment-center-search-result-card:hover .fulfillment-center-search-result-name::after {
  width: 3.75rem;
}

.fulfillment-center-search-result-name-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  max-width: 100%;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  transition: color 0.22s ease;
}

.fulfillment-center-search-result-name-link::after {
  content: '';
  flex-shrink: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: currentColor;
  opacity: 0.45;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.fulfillment-center-search-result-name-link:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

.fulfillment-center-search-result-name-link:hover::after {
  background-color: var(--color-primary);
  opacity: 0.9;
  transform: translate(1px, -1px);
}

@media (min-width: 1024px) {
  .fulfillment-center-search-result-name {
    font-size: clamp(1.125rem, 0.35vw + 1rem, 1.375rem);
    letter-spacing: -0.032em;
    line-height: 1.18;
    padding-bottom: 0.875rem;
  }

  .fulfillment-center-search-result-name::after {
    width: 3.25rem;
    height: 0.2rem;
  }

  .fulfillment-center-search-result-card:hover .fulfillment-center-search-result-name::after {
    width: 4.25rem;
  }
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Adresse mit Standort-Icon */
.fulfillment-center-search-result-address {
  margin-top: 0.75rem;
  margin-bottom: 0;
  width: 100%;
}

.fulfillment-center-search-result-address-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.4375rem;
  max-width: 100%;
  font-size: var(--font-size-sm);
  color: var(--color-info);
  text-decoration: none;
  line-height: var(--line-height-normal);
  transition: color 0.2s ease;
}

.fulfillment-center-search-result-address-link::before {
  content: '';
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.fulfillment-center-search-result-address-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Beschreibungstext gedämpft, max. 3 Zeilen */
.fulfillment-center-search-result-description {
  margin-top: 0.75rem;
  margin-bottom: 0;
  width: 100%;
  font-size: var(--font-size-sm);
  line-height: 1.55;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Änderungsprotokoll: 2026-07-08 | parent-agent | @skill-css-rules, @skill-change-provenance | Highlight-Badges: Text bleibt im Badge-Hintergrund */
.fulfillment-center-search-result-highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.875rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.fulfillment-center-search-result-highlight {
  display: inline-block;
  box-sizing: border-box;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1.35;
  border-radius: 0.625rem;
  padding: 0.3125rem 0.75rem;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fulfillment-center-search-result-highlight-experience {
  flex: 1 1 100%;
  line-height: 1.5;
}

.fulfillment-center-search-result-highlight-price {
  color: var(--color-success-text);
  background-color: var(--color-success-bg);
  border: 1px solid var(--color-success-border);
}

.fulfillment-center-search-result-highlight-warehouse,
.fulfillment-center-search-result-highlight-experience {
  color: var(--color-text);
  background-color: var(--color-primary-soft-bg);
  border: 1px solid var(--color-border);
}

.fulfillment-center-search-result-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  width: 100%;
}

.fulfillment-center-search-result-tag {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  background-color: transparent;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.1875rem 0.5625rem;
  line-height: 1.35;
  white-space: nowrap;
}

.fulfillment-center-search-result-tag-carrier {
  color: var(--color-info);
  border-color: rgba(59, 130, 246, 0.25);
}

.fulfillment-center-search-result-tag-marketplace {
  color: var(--color-primary);
  border-color: var(--color-primary-soft-border);
}

.fulfillment-center-search-result-tag-region {
  font-style: italic;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Meta-Zeile mit Badges */
.fulfillment-center-search-result-meta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--color-border);
  width: 100%;
  max-width: 100%;
}

.fulfillment-center-search-result-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 0.625rem;
  width: 100%;
  min-width: 0;
}

.fulfillment-center-search-result-meta-row-orders-text {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.fulfillment-center-search-result-meta-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: var(--line-height-normal);
}

.fulfillment-center-search-result-meta-badges {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  max-width: 100%;
}

.fulfillment-center-search-result-meta-badges .fulfillment-center-search-result-meta-value {
  margin-right: 0;
}

.fulfillment-center-search-result-meta-value {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  background-color: var(--color-primary-soft-bg);
  border: 1px solid var(--color-primary-soft-border);
  border-radius: 999px;
  padding: 0.2rem 0.625rem;
  line-height: 1.35;
  white-space: nowrap;
}

/* Änderungsprotokoll: 2026-07-08 | user-request | @skill-css-rules | Langer Mindestvolumen-Text in eigener Zeile */
.fulfillment-center-search-result-meta-value-text {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  line-height: 1.5;
  white-space: normal;
  overflow-wrap: anywhere;
}

/* .fulfillment-center-search-result-actions | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Action-Zeile auf mittige Button-Ausrichtung umgestellt */
.fulfillment-center-search-result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  width: 100%;
}

/* .fulfillment-center-search-result-more-button | Änderungsprotokoll: 2026-07-08 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | Mehr-Button breiter und mittig mit hochwertiger Wirkung */
.fulfillment-center-search-result-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.75rem;
  min-height: 2.375rem;
  padding: 0.4375rem 1.25rem;
  border-radius: 0.625rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.01em;
  text-align: center;
}

/* .fulfillment-center-search-result-card.is-expanded | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Aufgeklappte Karte mit hochwertigem Kontrast und Tiefe */
.fulfillment-center-search-result-card.is-expanded {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-primary-soft-bg) 88%, var(--color-surface) 12%) 0%,
    var(--color-surface) 100%
  );
  border-color: var(--color-primary-soft-border);
  box-shadow: var(--shadow-md), 0 0 0 1px color-mix(in srgb, var(--color-primary-soft-border) 75%, transparent);
}

/* .fulfillment-center-search-result-detail-panel | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Detail-Panel mit klarer Trennung und Kartenoptik */
.fulfillment-center-search-result-detail-panel {
  grid-column: 1 / -1;
  margin-top: 0;
  padding: 0.875rem 1rem 0.25rem;
  width: 100%;
  border-radius: 0.75rem;
  background-color: color-mix(in srgb, var(--color-surface) 90%, var(--color-primary-soft-bg) 10%);
  border: 1px solid color-mix(in srgb, var(--color-border) 70%, var(--color-primary-soft-border) 30%);
}

/* .fulfillment-center-search-result-detail-panel:not([hidden]) | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Sichtbares Panel mit Abstand und akzentuierter Oberkante */
.fulfillment-center-search-result-detail-panel:not([hidden]) {
  border-top: 1px solid color-mix(in srgb, var(--color-primary-soft-border) 75%, var(--color-border) 25%);
  margin-top: 0.75rem;
  padding-top: 1rem;
}

/* .fulfillment-center-search-result-detail-loading | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Lade- und Leerzustand hochwertiger und besser lesbar */
.fulfillment-center-search-result-detail-loading,
.fulfillment-center-search-result-detail-empty {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* .fulfillment-center-search-result-detail-section | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Detail-Sektionen als abgesetzte Blöcke */
.fulfillment-center-search-result-detail-section {
  margin-bottom: 0.875rem;
  padding: 0.75rem 0.875rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
}

.fulfillment-center-search-result-detail-section:last-child {
  margin-bottom: 0.25rem;
}

/* .fulfillment-center-search-result-detail-section-title | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Detail-Titel visuell hervorgehoben */
.fulfillment-center-search-result-detail-section-title {
  margin: 0 0 0.5rem;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-headline);
  letter-spacing: 0.01em;
}

/* .fulfillment-center-search-result-detail-fields | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Label/Value-Gitter mit ruhigerem Rhythmus */
.fulfillment-center-search-result-detail-fields {
  display: grid;
  grid-template-columns: minmax(7rem, 11rem) 1fr;
  gap: 0.4375rem 1rem;
  margin: 0;
}

/* .fulfillment-center-search-result-detail-field-label | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Label-Kontrast erhöht */
.fulfillment-center-search-result-detail-field-label {
  margin: 0;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.45;
}

/* .fulfillment-center-search-result-detail-field-value | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Werte besser lesbar mit höherem Kontrast */
.fulfillment-center-search-result-detail-field-value {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-headline);
  line-height: 1.5;
}

.fulfillment-center-search-filter-backdrop {
  display: none;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Leerer Zustand ohne Treffer */
.fulfillment-center-search-no-results {
  margin: 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: var(--font-size-base);
  line-height: 1.55;
  color: var(--color-text-muted);
  background-color: var(--color-surface);
  border: 1px dashed var(--color-border);
  border-radius: 0.9rem;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Infinite-Scroll-Ladehinweis */
/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Infinite-Scroll-Sentinel und Loader */
.fulfillment-center-search-infinite-scroll-sentinel {
  width: 100%;
  height: 1px;
  margin-top: 0.5rem;
  pointer-events: none;
}

.fulfillment-center-search-infinite-scroll-loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  text-align: center;
  padding: 1.25rem 1rem;
  margin-top: 0.5rem;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
}

.fulfillment-center-search-infinite-scroll-loader.is-loading {
  display: flex;
}

.fulfillment-center-search-infinite-scroll-loader.is-loading::before {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: fulfillment-center-search-loader-spin 0.7s linear infinite;
}

@keyframes fulfillment-center-search-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .fulfillment-center-search-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  /* Änderungsprotokoll: 2026-07-07 | parent-agent | @skill-css-rules | Schmalere Filter-Sidebar, kompaktere Select-Felder */
  .fulfillment-center-search-filters {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 1rem;
    align-self: flex-start;
    overflow: visible;
  }

  .fulfillment-center-search-filter-form {
    overflow: visible;
    max-height: none;
    padding-right: 0;
  }

  .fulfillment-center-search-toolbar {
    display: none;
  }

  .fulfillment-center-search-result-card:has(.fulfillment-center-search-result-card-preview) {
    grid-template-columns: minmax(0, 1fr) 8.575rem;
    column-gap: 1.25rem;
    align-items: start;
  }

  .fulfillment-center-search-result-card:has(.fulfillment-center-search-result-card-preview) .fulfillment-center-search-result-card-body {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  /* Änderungsprotokoll: 2026-07-08 | parent-agent | @skill-css-rules, @skill-change-provenance | Meta-Block bei Preview auf Actions-Breite erweitern */
  .fulfillment-center-search-result-card:has(.fulfillment-center-search-result-card-preview) .fulfillment-center-search-result-meta {
    width: calc(100% + 9.825rem);
    max-width: calc(100% + 9.825rem);
  }

  .fulfillment-center-search-result-meta-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.5rem 1rem;
    align-items: start;
  }

  .fulfillment-center-search-result-meta-row-orders-text {
    grid-template-columns: 1fr;
  }

  .fulfillment-center-search-result-meta-label {
    white-space: nowrap;
  }

  .fulfillment-center-search-result-meta-badges,
  .fulfillment-center-search-result-meta-value,
  .fulfillment-center-search-result-meta-value-text {
    margin-right: 0;
    justify-self: start;
    max-width: 100%;
  }

  .fulfillment-center-search-result-card-preview {
    grid-column: 2;
    grid-row: 1;
    width: 8.575rem;
    max-width: 8.575rem;
    justify-content: flex-end;
    justify-self: end;
    align-self: start;
    padding-top: 0.125rem;
    position: relative;
    z-index: 1;
  }

  .fulfillment-center-search-result-phone-frame {
    width: 8.05rem;
    min-width: 8.05rem;
    max-width: 8.05rem;
  }
}

@media (min-width: 1024px) {
  .fulfillment-center-search-result-meta-row-services {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.5rem 1.25rem;
  }
}

@media (max-width: 767px) {
  /* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Mobile Drawer mit Schatten */
  .fulfillment-center-search-filters {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(92vw, 360px);
    z-index: 100;
    transform: translateX(-110%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-radius: 0;
    border-left: none;
    border-top: none;
    border-bottom: none;
    box-shadow: var(--shadow-lg);
    padding: 1.25rem 1rem 1.5rem;
  }

  .fulfillment-center-search-filters.is-open {
    transform: translateX(0);
  }

  .fulfillment-center-search-filter-close {
    display: inline-flex;
  }

  .fulfillment-center-search-filter-backdrop.is-visible {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 17, 17, 0.42);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 90;
  }
}
/* Änderungsprotokoll: 2026-07-17 | cursor-agent | @skill-css-rules, @skill-change-provenance | View-Tabs unter Headline, hochwertige Segment-Control ohne Vollbreiten-Karte */
.fulfillment-center-search > .fulfillment-center-view-tabs-toolbar {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.25rem;
  margin-bottom: var(--spacing-lg);
  padding: 0;
  box-sizing: border-box;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.fulfillment-center-search > .fulfillment-center-view-tabs-toolbar .fulfillment-center-view-tabs-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}

.fulfillment-center-search > .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-nav {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: stretch;
  gap: 0.25rem;
  width: min(100%, 22.5rem);
  max-width: 100%;
  margin: 0 auto;
  padding: 0.25rem;
  border: 1px solid color-mix(in srgb, var(--color-primary) 18%, var(--color-border) 82%);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--color-white) 92%, var(--color-primary-soft-bg) 8%) 0%,
      color-mix(in srgb, var(--color-surface) 88%, var(--color-primary-soft-bg) 12%) 100%
    );
  box-shadow:
    0 1px 2px color-mix(in srgb, var(--color-text-primary) 6%, transparent),
    0 8px 24px color-mix(in srgb, var(--color-primary) 8%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--color-white) 88%, transparent);
}

.fulfillment-center-search > .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex: 1 1 0;
  min-width: 0;
  min-height: 2.625rem;
  margin: 0;
  padding: 0.5625rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.fulfillment-center-search > .fulfillment-center-view-tabs-toolbar #fulfillment-center-view-tab-list::before,
.fulfillment-center-search > .fulfillment-center-view-tabs-toolbar #fulfillment-center-view-tab-globe::before {
  content: '';
  flex-shrink: 0;
  width: 1.0625rem;
  height: 1.0625rem;
  background-color: currentColor;
  opacity: 0.88;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: opacity 0.2s ease;
}

.fulfillment-center-search > .fulfillment-center-view-tabs-toolbar #fulfillment-center-view-tab-list::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='8' y1='6' x2='21' y2='6'/%3E%3Cline x1='8' y1='12' x2='21' y2='12'/%3E%3Cline x1='8' y1='18' x2='21' y2='18'/%3E%3Cline x1='3' y1='6' x2='3.01' y2='6'/%3E%3Cline x1='3' y1='12' x2='3.01' y2='12'/%3E%3Cline x1='3' y1='18' x2='3.01' y2='18'/%3E%3C/svg%3E");
}

.fulfillment-center-search > .fulfillment-center-view-tabs-toolbar #fulfillment-center-view-tab-globe::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
}

.fulfillment-center-search > .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link:hover {
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
  color: var(--color-text-primary);
}

.fulfillment-center-search > .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link:hover::before {
  opacity: 1;
}

.fulfillment-center-search > .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link-active {
  border: none;
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--color-primary) 88%, var(--color-white) 12%) 0%,
    var(--color-primary) 55%,
    color-mix(in srgb, var(--color-primary) 82%, var(--color-text-primary) 18%) 100%
  );
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.025em;
  box-shadow:
    0 2px 4px color-mix(in srgb, var(--color-primary) 28%, transparent),
    0 8px 18px color-mix(in srgb, var(--color-primary) 22%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--color-white) 28%, transparent);
}

.fulfillment-center-search > .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link-active::before {
  opacity: 1;
}

.fulfillment-center-search > .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link-active:hover {
  color: var(--color-white);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--color-primary) 88%, var(--color-white) 12%) 0%,
    var(--color-primary) 55%,
    color-mix(in srgb, var(--color-primary) 82%, var(--color-text-primary) 18%) 100%
  );
}

@media (max-width: 575px) {
  .fulfillment-center-search > .fulfillment-center-view-tabs-toolbar {
    margin-bottom: var(--spacing-md);
  }

  .fulfillment-center-search > .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-nav {
    width: 100%;
  }

  .fulfillment-center-search > .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link {
    padding-inline: 0.75rem;
    font-size: var(--font-size-xs);
    letter-spacing: 0.01em;
  }
}
