/* kontener */
.ufas-search-container{
  position:relative;
  width:100%;
  max-width:560px;
  font-family:"Figtree",sans-serif
}

.ufas-search-input{
  width:100%;
  padding:10px;
  border:none;
  border-bottom:1px solid #ccc;
  background:#fafafa;
  font-size:16px;
  line-height:1.4;
  transition:border-bottom-color .2s
}
.ufas-search-input:focus{
  border-bottom-color:#000;
  outline:none
}

.ufas-search-results{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:#fff;
  border:1px solid #e0e0e0;
  border-top:0;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  max-height:60vh;
  overflow-y:auto;
  z-index:9999;
  display:none
}

.ufas-result-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 14px;
  border-bottom:1px solid #f2f2f2;
  cursor:pointer;
  user-select:none;
  transition:background .15s
}
.ufas-result-item:last-child{border-bottom:0}
.ufas-result-item:hover{background:#f5f5f5}

.ufas-result-thumb{
  width:48px;
  height:48px;
  object-fit:cover;
  flex-shrink:0;
  border:1px solid #eee
}

/* teksty */
.ufas-result-title{
  font-size:.95rem;
  font-weight:500;
  color:#000;
  line-height:1.3
}
.ufas-result-cat{
  font-size:.8rem;
  color:#666
}
.ufas-result-price{
  margin-left:auto;
  font-size:.9rem;
  color:#cc0000;
  white-space:nowrap
}

.ufas-no-results{
  padding:12px 14px;
  color:#666;
  font-size:.9rem
}
