.las-search-wrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 1em;
}
.las-search-input, .las-cat-select {
  width: 100%;
  padding: .75em 1em;
  font-size: 1.1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: .5em;
  box-sizing: border-box;
}
.las-results {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 500px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}
.las-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5em 1em;
  border-bottom: 1px solid #eee;
}
.las-item:last-child { border-bottom: none; }
.las-name {
  flex: 2;
  font-weight: 500;
}
.las-stock {
  flex: 1;
  text-align: center;
  color: #666;
  font-size: .9em;
}
.las-price {
  flex: 1;
  text-align: center;
  font-weight: 600;
  color: #222;
}
.las-qty {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.las-qty-input {
  width: 3em;
  text-align: center;
  margin: 0 .25em;
}
.las-minus, .las-plus {
  background: none;
  border: 1px solid #ccc;
  padding: .25em .5em;
  cursor: pointer;
  border-radius: 3px;
}
.las-add {
  background: #0071a1;
  color: #fff;
  border: none;
  padding: .5em 1em;
  border-radius: 4px;
  cursor: pointer;
}
.las-loader, .las-none {
  text-align: center;
  padding: 1em;
  color: #666;
}




/* Out-of-stock button */
.las-out-of-stock {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: .5em 1em;
  border-radius: 4px;
  cursor: default;
}
.las-out-of-stock:hover {
  background: #c82333;
}


