.header-mid__search{
	position: relative;
}

.results {
    position: absolute;
    top: 132%;
    left: 0;
    right: 0;
    background: #fff;
    border: none;
    border-top: none;
    border-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    width: calc(100% - 43px);
    box-shadow: 2px 11px 15px #00000042;
}

.result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.header-mid__search.open{
	z-index: 1000;
}

.result-info {
  display: flex;
  align-items: center;
}

.result-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 4px;
}

.result-text {
  display: flex;
  flex-direction: column;
}

.result-text span {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}

.result-text .sku {
  font-size: 12px;
  color: #888;
}

.result-text .price {
  font-weight: bold;
  margin-top: 2px;
}
.results.open {
  display: block;
}


.buy-btn:hover {
  background: #218838;
}

.result-item .buy-btn {
    background: #3076d5;
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
    font-family: 'Gilroy';
}