/**
 * Header product search autocomplete
 *
 * @package Multistore Theme
 */
.search-autocomplete {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 1000;
	background: #ffffff;
	border-radius: 5px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}
.search-autocomplete[hidden] {
	display: none;
}
.search-autocomplete__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 15px;
	text-decoration: none;
	color: #333333;
}
.search-autocomplete__item:hover,
.search-autocomplete__item.is-active {
	background: #f2f4f2;
}
.search-autocomplete__item + .search-autocomplete__item {
	border-top: 1px solid #ececec;
}
.search-autocomplete__image {
	flex-shrink: 0;
	width: 40px;
	height: 48px;
	object-fit: cover;
	border-radius: 3px;
}
.search-autocomplete__content {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.search-autocomplete__title {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.search-autocomplete__price {
	font-size: 13px;
	color: #81937c;
	font-weight: 600;
}
.search-autocomplete__price del {
	color: #999999;
	font-weight: 400;
	margin-right: 6px;
}
.search-autocomplete__empty {
	padding: 12px 15px;
	font-size: 14px;
	color: #777777;
}
