.sr-ls-dropdown {
  display: none;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  overflow: hidden;
  max-height: 420px;
  overflow-y: auto;
}

.sr-ls-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f2f2f2;
  transition: background .12s;
}
.sr-ls-row:last-child { border-bottom: none; }
.sr-ls-row:hover      { background: #f5f8ff; }

.sr-ls-thumb {
  width: 42px;
  height: 68px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
  background: #eee;
  display: block;
}
.sr-ls-nothumb {
  width: 42px;
  height: 68px;
  flex-shrink: 0;
  background: #f0f0f0;
  border-radius: 5px;
}

.sr-ls-text  { flex: 1; min-width: 0; }
.sr-ls-name  {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1f2e;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sr-ls-cat {
  display: block;
  font-size: 11px;
  color: #F06265;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-top: 4px;
}

.sr-ls-empty {
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #888;
  margin: 0;
}

.sr-ls-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 20px;
}
.sr-ls-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  animation: srDot 1s ease-in-out infinite;
}
.sr-ls-dots span:nth-child(2) { animation-delay: .15s; }
.sr-ls-dots span:nth-child(3) { animation-delay: .30s; }

@keyframes srDot {
  0%,80%,100% { transform:scale(.6); opacity:.4; }
  40%         { transform:scale(1);  opacity:1; }
}