.vsp-search-form {
	position: relative;
}

.vsp-results {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 10050;
	width: min(460px, 92vw);
	max-height: min(620px, 72vh);
	overflow-y: auto;
	background: #fff;
	border: 1px solid #e4e4e4;
	border-radius: 4px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, .16);
	color: #222;
	text-align: left;
}

.vsp-results.is-open {
	display: block;
}

.vsp-heading {
	padding: 9px 14px 6px;
	background: #f7f7f7;
	color: #777;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.vsp-item,
.vsp-all-results {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-bottom: 1px solid #eee;
	color: #222;
	text-decoration: none;
	transition: background-color .15s ease, color .15s ease;
}

.vsp-item:hover,
.vsp-item:focus,
.vsp-item.is-active,
.vsp-all-results:hover,
.vsp-all-results:focus,
.vsp-all-results.is-active {
	background: #fff4f4;
	color: #d71920;
	text-decoration: none;
	outline: 0;
}

.vsp-image {
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	object-fit: contain;
	border: 1px solid #eee;
	border-radius: 3px;
	background: #fff;
}

.vsp-product-content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}

.vsp-product-name {
	overflow: hidden;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vsp-price {
	color: #333;
	font-size: 13px;
	font-weight: 700;
}

.vsp-price del {
	opacity: .6;
	margin-right: 4px;
}

.vsp-category {
	justify-content: space-between;
	padding-top: 9px;
	padding-bottom: 9px;
	font-size: 14px;
	font-weight: 600;
}

.vsp-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 7px;
	border-radius: 12px;
	background: #eee;
	color: #666;
	font-size: 11px;
}

.vsp-all-results {
	justify-content: center;
	border-bottom: 0;
	color: #d71920;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.vsp-message {
	padding: 18px 14px;
	color: #666;
	font-size: 13px;
	text-align: center;
}

@media (max-width: 575px) {
	.vsp-results {
		right: auto;
		left: 50%;
		width: min(460px, calc(100vw - 20px));
		max-height: 65vh;
		transform: translateX(-50%);
	}

	.vsp-product-name {
		white-space: normal;
	}
}
