.nav-search {
  position: relative;
  z-index: 10000;
}

#kitapAra {
  width: 380px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  outline: none;
  font-size: 14px;
}

#aramaSonuc {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  max-height: 360px;
  overflow-y: auto;

  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);

  display: none;
  z-index: 10001;
}

.arama-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 8px 12px;
  min-height: 56px;
  cursor: pointer;

  transition: background .2s ease;
}

.arama-item:hover {
  background: #f6b6c1;
}

.arama-item img {
  width: 36px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.arama-item span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
}