html.dazeraw-search-open,
body.dazeraw-search-open {
	overflow: hidden;
	overscroll-behavior: none;
}

.dazeraw-search-toggle {
	padding: 0;
	color: inherit;
	background: transparent;
	font: inherit;
}

.dazeraw-live-search {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	z-index: 2000;
	inset: 0;
	width: 100vw;
	height: 100dvh;
	min-height: 100vh;
	padding: clamp(24px, 5vw, 80px);
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	color: #fff;
	background: #000;
	isolation: isolate;
	transition: opacity .25s ease, visibility .25s ease;
}

.dazeraw-live-search.is-open {
	visibility: visible;
	opacity: 1;
}

.dazeraw-live-search__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.dazeraw-live-search__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: clamp(28px, 5vw, 70px);
}

.dazeraw-live-search__header h2 {
	margin: 0;
	font-size: clamp(32px, 6vw, 78px);
	line-height: .9;
	text-transform: uppercase;
}

.dazeraw-live-search__close {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin: 0 -10px 0 20px;
	padding: 10px;
	color: #aaa;
	background: transparent;
	border: 0;
	transition: color .2s ease, transform .2s ease;
}

.dazeraw-live-search__close:hover,
.dazeraw-live-search__close:focus-visible {
	color: #fff;
	transform: rotate(4deg);
}

.dazeraw-live-search__close svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
}

.dazeraw-live-search__form input[type="search"] {
	width: 100%;
	padding: 12px 0;
	color: #fff;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, .55);
	border-radius: 0;
	font: inherit;
	font-size: clamp(22px, 3vw, 42px);
}

.dazeraw-live-search__form input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
	width: 26px;
	height: 20px;
	background-color: #777;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 20'%3E%3Cpath d='M8.2 2h13.2A2.6 2.6 0 0 1 24 4.6v10.8a2.6 2.6 0 0 1-2.6 2.6H8.2L2 10Z' fill='none' stroke='%23000' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='m11 6.6 6.8 6.8m0-6.8L11 13.4' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 20'%3E%3Cpath d='M8.2 2h13.2A2.6 2.6 0 0 1 24 4.6v10.8a2.6 2.6 0 0 1-2.6 2.6H8.2L2 10Z' fill='none' stroke='%23000' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='m11 6.6 6.8 6.8m0-6.8L11 13.4' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
	cursor: pointer;
	opacity: .85;
}

.dazeraw-live-search__form input[type="search"]::-webkit-search-cancel-button:hover {
	background-color: #aaa;
}

.dazeraw-live-search__status {
	min-height: 36px;
	padding: 12px 0;
	opacity: .65;
	font-size: 11px;
	text-transform: uppercase;
}

.dazeraw-live-search__results {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	background: transparent;
	border-top: 1px solid rgba(255, 255, 255, .16);
}

.dazeraw-live-search__results:empty {
	display: none;
}

.dazeraw-live-search__result {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 16px;
	min-height: 110px;
	padding: 12px;
	color: #fff;
	background: #000;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.dazeraw-live-search__result.has-image {
	grid-template-columns: 86px minmax(0, 1fr);
}

.dazeraw-live-search__result:nth-child(even) {
	border-left: 1px solid rgba(255, 255, 255, .16);
}

.dazeraw-live-search__image {
	display: block;
	width: 86px;
	height: 86px;
	background: #111;
}

.dazeraw-live-search__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dazeraw-live-search__copy {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
}

.dazeraw-live-search__copy strong {
	font-size: 14px;
	line-height: 1.2;
	text-transform: uppercase;
}

.dazeraw-live-search__meta {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	opacity: .7;
	font-size: 10px;
	text-transform: uppercase;
}

.dazeraw-live-search__price {
	white-space: nowrap;
}

@media (max-width: 700px) {
	.dazeraw-live-search {
		padding: 24px 18px;
	}

	.dazeraw-live-search__results {
		grid-template-columns: 1fr;
	}

	.dazeraw-live-search__result {
		min-height: 88px;
	}

	.dazeraw-live-search__result.has-image {
		grid-template-columns: 68px minmax(0, 1fr);
	}

	.dazeraw-live-search__result:nth-child(even) {
		border-left: 0;
	}

	.dazeraw-live-search__image {
		width: 64px;
		height: 64px;
	}

	.dazeraw-header-actions .dazeraw-search-toggle:first-child {
		display: inline-flex;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dazeraw-live-search {
		transition: none;
	}
}
