.woku-search-shell {
	position: relative;
	width: 100%;
}

.search-main .woku-search-shell {
	min-width: 62rem;
}

.search-main .woku-search-form {
	color: #999;
	height: 4.8rem;
	border: .1rem solid currentColor;
	border-radius: 10rem;
}

.search-main .woku-search-field {
	height: 100%;
}

.search-main .woku-search-input {
	height: 100%;
	padding: 0 5.2rem 0 1.6rem;
	color: inherit;
	caret-color: currentColor;
	font-family: var(--font-desc);
	font-size: 1.4rem;
	line-height: 1.5;
	background: transparent;
	border: 0;
	border-radius: 10rem;
	outline: 0;
}

.search-main .woku-search-input::placeholder {
	color: currentColor;
	opacity: .72;
}

.search-main .woku-search-submit {
	top: 50%;
	right: .4rem;
	width: 4rem;
	height: 4rem;
	padding: 0;
	position: absolute;
	transform: translateY(-50%);
	border: 0;
	border-radius: 50%;
	background: linear-gradient(108deg, #e77c58 3.84%, #ff480f 22.43%, #d60326 60.36%, #7d289d 96.59%);
}

.search-main .woku-search-submit::before,
.search-main .woku-search-submit span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.8rem;
	height: 1.8rem;
	content: "";
	transform: translate(-50%, -50%);
	background: url("/template/assets/images/icons/search.svg") center / contain no-repeat;
	filter: brightness(0) invert(1);
}

.search-main .woku-search-submit span {
	display: none;
}

.woku-search-form,
.woku-search-field {
	position: relative;
	width: 100%;
}

.woku-search-input {
	width: 100%;
}

.woku-search-suggestions {
	position: absolute;
	top: calc(100% + .6rem);
	left: 0;
	right: 0;
	z-index: 10020;
	display: none;
	max-height: min(68vh, 48rem);
	overflow-x: hidden;
	overflow-y: auto;
	background: #fff;
	border: 1px solid rgba(19, 19, 19, .1);
	border-radius: 1.2rem;
	box-shadow: 0 1.6rem 4rem -1rem rgba(50, 50, 93, .28), 0 .8rem 2.4rem -1.5rem rgba(0, 0, 0, .22);
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.woku-search-shell.is-open .woku-search-suggestions,
.woku-search-form.is-open .woku-search-suggestions {
	display: block;
}

.woku-search-result {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	min-height: 7.2rem;
	padding: .8rem 1.2rem;
	color: #171717;
	text-decoration: none;
	background: #fff;
	border-bottom: 1px solid rgba(19, 19, 19, .07);
	transition: background-color .12s ease, color .12s ease;
}

.woku-search-result:hover,
.woku-search-result:focus-visible,
.woku-search-result.is-selected {
	color: #d60326;
	background: #fff4f0;
	outline: none;
}

.woku-search-result img {
	flex: 0 0 5.6rem;
	width: 5.6rem;
	height: 5.6rem;
	margin: 0;
	object-fit: contain;
	background: #fff;
	border-radius: .8rem;
}

.woku-search-copy {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	flex-direction: column;
	gap: .25rem;
	line-height: 1.35;
}

.woku-search-copy strong {
	display: block;
	font-size: 1.5rem;
	font-weight: 600;
}

.woku-search-price {
	display: flex;
	align-items: baseline;
	gap: .65rem;
	font-size: 1.35rem;
	font-weight: 600;
}

.woku-search-price del {
	color: #8b8b8b;
	font-weight: 500;
	text-decoration-color: #8b8b8b;
	text-decoration-thickness: 1px;
}

.woku-search-price ins {
	color: #d60326;
	font-weight: 700;
	text-decoration: none;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
	.woku-search-price ins,
	.woku-search-result:hover .woku-search-copy strong,
	.woku-search-result:focus-visible .woku-search-copy strong,
	.woku-search-result.is-selected .woku-search-copy strong {
		color: transparent;
		background: linear-gradient(108deg, #e77c58 3.84%, #ff480f 22.43%, #d60326 60.36%, #7d289d 96.59%);
		background-clip: text;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
}

.woku-search-all,
.woku-search-empty {
	display: block;
	padding: 1.2rem 1.4rem;
	font-size: 1.4rem;
	font-weight: 600;
	text-align: center;
}

.woku-search-all {
	color: #d60326;
	font-weight: 700;
	text-decoration: none;
	background: linear-gradient(90deg, rgba(231, 124, 88, .08), rgba(214, 3, 38, .08), rgba(125, 40, 157, .08));
}

.woku-search-all:hover,
.woku-search-all:focus-visible {
	color: #fff;
	background: #d60326;
	outline: none;
}

.woku-search-empty {
	color: #666;
	font-weight: 500;
	background: #fff;
}

.js-menu-search .woku-search-suggestions {
	min-width: 40rem;
}

@media screen and (max-width: 480px) {
	.js-menu-search .woku-search-suggestions {
		min-width: 30rem;
	}
}

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