/* KKU.Web.UI — üst arama önerileri (legacy kku-live-search görsel referans) */
.kku-search-box {
  position: relative;
  overflow: visible;
  z-index: 40;
}

.kku-search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  width: 440px;
  max-width: calc(100vw - 24px);
  background: #f3f6fa;
  border-radius: 12px;
  border: 1px solid #d7e0ea;
  border-top: 3px solid var(--kku-red, #c9151b);
  box-shadow: 0 16px 40px rgba(1, 23, 47, 0.28);
  z-index: 60;
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: min(78vh, 560px);
  padding: 0;
  margin: 0;
}

.kku-search-suggest:not([hidden]) {
  display: flex;
}

.kku-search-suggest__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: var(--kku-topbar-grad, linear-gradient(90deg, #053170 0%, #053170 45%, #9e1b32 80%, #c9151b 100%));
  color: #fff;
}

.kku-search-suggest__head-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.kku-search-suggest__head-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.kku-search-suggest__head-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}

.kku-search-suggest__head-query {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

.kku-search-suggest__count {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.kku-search-suggest__status {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--kku-navy, #053170);
}

.kku-search-suggest__status.is-loading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kku-search-suggest__bars {
  display: inline-flex;
  gap: 3px;
  height: 14px;
  align-items: flex-end;
}

.kku-search-suggest__bars span {
  width: 3px;
  height: 6px;
  background: var(--kku-red, #c9151b);
  border-radius: 1px;
  animation: kku-search-bar 0.8s ease-in-out infinite;
}

.kku-search-suggest__bars span:nth-child(2) { animation-delay: 0.1s; }
.kku-search-suggest__bars span:nth-child(3) { animation-delay: 0.2s; }
.kku-search-suggest__bars span:nth-child(4) { animation-delay: 0.3s; }

@keyframes kku-search-bar {
  0%, 100% { height: 5px; opacity: 0.45; }
  50% { height: 14px; opacity: 1; }
}

.kku-search-suggest__scroll {
  overflow: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.kku-search-suggest__list {
  list-style: none;
  margin: 0;
  padding: 6px;
}

.kku-search-suggest__empty {
  padding: 18px 14px;
  text-align: center;
  color: #6b7c90;
  font-size: 13px;
}

.kku-search-suggest__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  border-left: 3px solid var(--kku-navy, #053170);
  background: #fff;
  margin-bottom: 6px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.kku-search-suggest__item:hover,
.kku-search-suggest__item.is-active {
  background: #eaf1f8;
  transform: translateX(2px);
}

.kku-search-suggest__badge {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 3px 7px;
  border-radius: 4px;
  background: #e8eef5;
  color: var(--kku-navy, #053170);
}

.kku-search-suggest__badge[data-cat="Duyuru"],
.kku-search-suggest__badge[data-cat="Announcement"] {
  background: #e6f4f4;
  color: #0d6e6e;
}

.kku-search-suggest__badge[data-cat="Etkinlik"],
.kku-search-suggest__badge[data-cat="Event"] {
  background: #f8e8ec;
  color: #9e1b32;
}

.kku-search-suggest__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kku-search-suggest__title {
  font-size: 13px;
  font-weight: 600;
  color: #1a2b3c;
  line-height: 1.35;
}

.kku-search-suggest__meta {
  font-size: 11px;
  color: #6b7c90;
}

.kku-search-suggest__all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid #d7e0ea;
  color: var(--kku-navy, #053170);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

.kku-search-suggest__all:hover {
  color: var(--kku-red, #c9151b);
  background: #f8fafc;
}

@media (max-width: 640px) {
  .kku-search-suggest {
    position: fixed;
    top: auto;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    bottom: 12px;
    max-height: 60vh;
  }
}
