.sanier-live-search {
	--sanier-search-blue: #087be6;
	--sanier-search-blue-dark: #0568c4;
	--sanier-search-border: #d8dee7;
	--sanier-search-text: #172033;
	position: relative;
	z-index: 50;
	width: 100%;
	max-width: 1120px;
}

.sanier-live-search__form {
	display: flex;
	width: 100%;
	min-height: 76px;
	margin: 0;
	filter: drop-shadow(0 10px 24px rgba(10, 34, 64, 0.08));
}

.sanier-live-search__input[type="search"] {
	box-sizing: border-box;
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	height: 60px;
	margin: 0;
	padding: 0 24px;
	border: 1px solid var(--sanier-search-border);
	border-right: 0;
	border-radius: 11px 0 0 11px;
	background: #fff;
	box-shadow: none;
	color: var(--sanier-search-text);
	font: inherit;
	font-size: 15px;
	line-height: 1.3;
	outline: 0;
}

.sanier-live-search__input[type="search"]::placeholder {
	color: #aab4c3;
	opacity: 1;
}

.sanier-live-search__input[type="search"]:focus {
	border-color: var(--sanier-search-blue);
	box-shadow: inset 0 0 0 1px var(--sanier-search-blue);
}

.sanier-live-search__submit {
	box-sizing: border-box;
	flex: 0 0 auto;
	min-width: 144px;
	height: 60px;
	margin: 0;
	padding: 0 28px;
	border: 0;
	border-radius: 0 11px 11px 0;
	background: #00abff;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-transform: none;
	transition: background-color 0.2s ease;
}

.sanier-live-search__submit:hover,
.sanier-live-search__submit:focus-visible {
	background: var(--sanier-search-blue-dark);
	color: #fff;
}

.sanier-live-search__results {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 100%;
	max-height: min(620px, 72vh);
	overflow-x: hidden;
	overflow-y: auto;
	border: 1px solid #e1e6ed;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 18px 45px rgba(15, 34, 58, 0.18);
	color: var(--sanier-search-text);
}

.sanier-live-search__results[hidden] {
	display: none !important;
}

.sanier-live-search__groups {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.sanier-live-search__group + .sanier-live-search__group {
	border-left: 1px solid #e8ebf0;
}

.sanier-live-search__group-title {
	padding: 15px 18px 11px;
	border-bottom: 1px solid #eef1f5;
	color: #687386;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.3;
	text-transform: uppercase;
}

.sanier-live-search__list {
	padding: 6px;
}

.sanier-live-search__item {
	display: flex;
	align-items: center;
	min-height: 68px;
	padding: 8px 10px;
	border-radius: 8px;
	color: var(--sanier-search-text);
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.sanier-live-search__item:hover,
.sanier-live-search__item:focus,
.sanier-live-search__item.is-active {
	background: #f0f7ff;
	color: var(--sanier-search-text);
	text-decoration: none;
}

.sanier-live-search__media {
	display: flex;
	flex: 0 0 54px;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-right: 12px;
	overflow: hidden;
	border-radius: 7px;
	background: #f4f6f8;
}

.sanier-live-search__media:empty::before {
	width: 18px;
	height: 18px;
	border: 2px solid #ccd4df;
	border-radius: 50%;
	content: "";
}

.sanier-live-search__media img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
}

.sanier-live-search__item-content {
	display: flex;
	min-width: 0;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 3px;
}

.sanier-live-search__item-title {
	display: -webkit-box;
	overflow: hidden;
	color: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.sanier-live-search__item-meta {
	color: #667286;
	font-size: 12px;
	line-height: 1.35;
}

.sanier-live-search__item--product .sanier-live-search__item-meta {
	color: var(--sanier-search-blue-dark);
	font-weight: 700;
}

.sanier-live-search__all-results {
	display: block;
	padding: 15px 20px;
	border-top: 1px solid #e8ebf0;
	color: var(--sanier-search-blue-dark);
	font-size: 14px;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
}

.sanier-live-search__all-results:hover,
.sanier-live-search__all-results:focus-visible {
	background: #f7faff;
	color: var(--sanier-search-blue-dark);
	text-decoration: none;
}

.sanier-live-search__message {
	padding: 26px 20px;
	color: #687386;
	font-size: 14px;
	text-align: center;
}

.sanier-live-search__message--loading::before {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 9px;
	border: 2px solid #cbd9e8;
	border-top-color: var(--sanier-search-blue);
	border-radius: 50%;
	content: "";
	vertical-align: -3px;
	animation: sanier-live-search-spin 0.7s linear infinite;
}

.sanier-search-results .sanier-search-results__header {
	margin-bottom: 34px;
}

.sanier-search-results .sanier-search-results__title {
	margin-bottom: 0;
}

.sanier-search-results .sanier-search-results__section + .sanier-search-results__section {
	margin-top: 64px;
	padding-top: 52px;
	border-top: 1px solid #e2e7ed;
}

.sanier-search-results .sanier-search-results__section-title {
	margin-bottom: 26px;
}

@keyframes sanier-live-search-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 767px) {
	.sanier-live-search__form {
		min-height: 58px;
	}

	.sanier-live-search__input[type="search"] {
		height: 58px;
		padding: 0 15px;
		font-size: 16px;
	}

	.sanier-live-search__submit {
		min-width: 92px;
		height: 58px;
		padding: 0 18px;
		font-size: 16px;
	}

	.sanier-live-search__groups {
		display: block;
	}

	.sanier-live-search__group + .sanier-live-search__group {
		border-top: 1px solid #e8ebf0;
		border-left: 0;
	}

	.sanier-search-results .sanier-search-results__section + .sanier-search-results__section {
		margin-top: 42px;
		padding-top: 34px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sanier-live-search__submit,
	.sanier-live-search__item {
		transition: none;
	}

	.sanier-live-search__message--loading::before {
		animation-duration: 1.5s;
	}
}
