/* سبک نتایج جستجوی لایو - نسخه نهایی */
.las-results {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-top: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: none;
  z-index: 9999;
  max-height: 380px;
  overflow-y: auto; /* اسکرول فقط اینجا */
  overflow-x: hidden;
}

/* اگر والد position:relative ندارد، برای برخی ساختارها */
.search-field, .tie-popup-search-input {
  position: relative;
}

.las-list {
  /* حذف overflow-y از اینجا */
}

.las-item {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid #f3f3f3;
  text-decoration: none;
  color: #222;
}

.las-item:last-child {
  border-bottom: 0;
}

.las-item:hover {
  background: #fafafa;
}

.las-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  background: #f7f7f7;
}

.las-title {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.4;
}

.las-excerpt {
  color: #555;
  font-size: 13px;
  line-height: 1.5;
}

.las-empty, .las-error, .las-loading {
  padding: 10px 12px;
  color: #666;
  font-size: 13px;
  text-align: center;
}

mark {
  background: #ffe599;
  padding: 0 2px;
  border-radius: 3px;
}