.product-search { position: relative; display: block; }
.product-options {
  position: absolute;
  z-index: 40;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  display: none;
  max-height: 230px;
  overflow-y: auto;
  border: 1px solid #d8d1c4;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 60, 49, 0.17);
}
.product-options.open { display: block; }
.product-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 11px;
  border: 0;
  border-bottom: 1px solid #f0ece4;
  color: #203029;
  background: #fff;
  text-align: left;
  cursor: pointer;
}
.product-option:last-child { border-bottom: 0; }
.product-option:hover,
.product-option.active { color: #fff; background: #187056; }
.product-option small { color: #8b938e; font-size: 9px; }
.product-option:hover small { color: #d7e9e2; }
.product-empty { display: block; padding: 11px; color: #707a73; }
