/* Live product-search autocomplete dropdown. */
.lupino-suggest-host {
	position: relative;
}

.lupino-suggest {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #FFFDFA;
	border: 1px solid #E4D9CB;
	border-top: none;
	border-radius: 0 0 10px 10px;
	box-shadow: 0 10px 28px rgba(43, 39, 36, .12);
	max-height: 70vh;
	overflow-y: auto;
}

.lupino-suggest__item {
	display: flex;
	align-items: center;
	gap: .65em;
	padding: .5em .75em;
	border-bottom: 1px solid #F0E9DE;
	color: #2B2724;
	text-decoration: none;
}

.lupino-suggest__item:hover,
.lupino-suggest__item:focus {
	background: #FAF6F0;
	color: #B9743F;
}

.lupino-suggest__img {
	width: 44px;
	height: 44px;
	object-fit: cover;
	border-radius: 5px;
	flex: 0 0 auto;
	background: #F0E9DE;
}

.lupino-suggest__t {
	flex: 1 1 auto;
	font-size: .9rem;
	line-height: 1.25;
}

.lupino-suggest__p {
	flex: 0 0 auto;
	font-size: .85rem;
	font-weight: 600;
	white-space: nowrap;
	color: #2B2724;
}

.lupino-suggest__empty {
	padding: .8em .75em;
	font-size: .9rem;
	color: #6B635B;
}

.lupino-suggest__all {
	display: block;
	padding: .6em .75em;
	text-align: center;
	font-size: .85rem;
	font-weight: 600;
	letter-spacing: .03em;
	color: #B9743F;
	text-decoration: none;
	background: #FAF6F0;
}

.lupino-suggest__all:hover {
	background: #F0E9DE;
}
