/* Eigener Such-Trigger: ersetzt visuell das Enfold-Sucheicon. Farbe/Groesse
   passend zur Nav (Oswald, font-weight:900, Farbe rgb(0,0,0)). */
.luk-search-trigger {
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  opacity: .85;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .15s;
}
.luk-search-trigger:hover { opacity: 1; }

/* Sichtbarkeit von Desktop- vs. Mobil-Trigger wird per JS gesetzt (luk-search.js,
   syncSearchTriggerVisibility) -- Enfold klappt die Nav nicht an einem festen
   Pixel-Breakpoint ein, sondern je nach tatsaechlicher Menuebreite/-inhalt. */
.luk-search-trigger-li {
  display: none;
  align-items: center;
}

.luk-search-trigger--mobile {
  display: none;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  margin-right: 8px;
}

/* Suchpanel */
#luk-search-panel {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(15, 23, 42, .5);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 8vh 16px 16px;
}
#luk-search-panel.luk-open { display: flex; }

#luk-search-inner {
  background: #fff;
  width: 100%;
  max-width: 640px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  overflow: hidden;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

#luk-search-inputwrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 18px 14px;
  color: #9ca3af;
  flex-shrink: 0;
}
#luk-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  font-size: 17px;
  color: #111;
}
#luk-search-close {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #9ca3af;
  padding: 4px;
}
#luk-search-close:hover { color: #111; }

#luk-search-results {
  overflow-y: auto;
  padding: 8px 0 16px;
}

.luk-sr-group h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #9ca3af;
  margin: 14px 18px 4px;
}
.luk-sr-row {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: inherit;
  transition: background .12s;
}
.luk-sr-row:hover { background: #f8fafc; }
.luk-sr-row--content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
}
.luk-sr-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.luk-sr-thumb--empty { background: #eff6ff; }
.luk-sr-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}
.luk-sr-row--content .luk-sr-title {
  font-size: 13.5px;
  font-weight: 500;
}
.luk-sr-sub {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}
.luk-sr-ai .luk-sr-title { color: #1a56db; }
.luk-sr-empty {
  padding: 24px 18px;
  color: #9ca3af;
  font-size: 14px;
  text-align: center;
}
