.shop-product-search {
	margin: 0.7rem 0;
	position: relative;
	width: 100%;
}

.shop-product-search__control {
	align-items: stretch;
	background: #fff;
	border: 1px solid #c8c8c8;
	border-radius: 0.6rem;
	display: flex;
	min-height: 2.75rem;
	overflow: hidden;
	transition: border-color 120ms ease, box-shadow 120ms ease;
}

.shop-product-search__control:focus-within {
	border-color: var(--main-dark-color);
	box-shadow: 0 0 0 3px rgba(239, 104, 26, 0.18);
}

.shop-product-search__icon {
	align-self: center;
	color: #6c757d;
	font-size: 0.95rem;
	margin-left: 0.9rem;
}

.shop-product-search__input.form-control {
	background: #fff;
	border: 0;
	box-shadow: none;
	color: #231f20;
	flex: 1 1 auto;
	height: auto;
	min-width: 0;
	padding: 0.65rem 0.75rem;
}

.shop-product-search__input.form-control:focus {
	box-shadow: none;
}

.shop-product-search__input::-webkit-search-cancel-button {
	cursor: pointer;
}

.shop-product-search__submit {
	background: var(--main-color);
	border: 0;
	color: var(--main-text-color);
	cursor: pointer;
	font-weight: 700;
	padding: 0 1.15rem;
}

.shop-product-search__submit:hover,
.shop-product-search__submit:focus {
	background: var(--main-dark-color);
	outline: 0;
}

.shop-product-search__suggestions {
	background: #fff;
	border: 1px solid #d5d5d5;
	border-radius: 0 0 0.6rem 0.6rem;
	box-shadow: 0 1rem 2rem rgba(35, 31, 32, 0.18);
	left: 0;
	max-height: min(28rem, 70vh);
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: calc(100% + 0.2rem);
	z-index: 110;
}

.shop-product-search__option {
	align-items: center;
	background: #fff;
	border: 0;
	border-bottom: 1px solid #ededed;
	color: #231f20;
	cursor: pointer;
	display: flex;
	gap: 0.85rem;
	padding: 0.65rem 0.8rem;
	text-align: left;
	width: 100%;
}

.shop-product-search__option:last-child {
	border-bottom: 0;
}

.shop-product-search__option:hover,
.shop-product-search__option[aria-selected="true"] {
	background: #fff4ed;
}

.shop-product-search__thumbnail {
	background: #fff;
	border: 1px solid #ededed;
	border-radius: 0.35rem;
	height: 3.25rem;
	object-fit: contain;
	width: 3.25rem;
}

.shop-product-search__copy {
	display: block;
	min-width: 0;
}

.shop-product-search__name {
	display: block;
	font-weight: 700;
	line-height: 1.25;
}

.shop-product-search__meta {
	color: #6c757d;
	display: block;
	font-size: 0.8rem;
	line-height: 1.35;
	margin-top: 0.2rem;
}

.shop-product-search__message,
.shop-product-search__all-results {
	color: #555;
	display: block;
	padding: 0.85rem 1rem;
}

.shop-product-search__all-results {
	background: #fafafa;
	color: var(--link-color);
	font-weight: 700;
	text-align: center;
}

@media (max-width: 575.98px) {
	.shop-product-search__submit {
		font-size: 0;
		padding: 0 0.9rem;
	}

	.shop-product-search__submit::after {
		content: "\f002";
		font-family: "Font Awesome 5 Free";
		font-size: 0.95rem;
		font-weight: 900;
	}

	.shop-product-search__input.form-control {
		padding-left: 0.6rem;
	}

	.shop-product-search__icon {
		display: none;
	}
}
