/* container – hidden by default */
#search-modal {
	position: absolute;
	top: 0;
	left: 0;
	inset: 0;
	display: none;
	z-index: 9999; /* above everything */
	opacity: 0;
	transition: all 0.25s ease-in-out;
}
#search-modal.is-open {
	display: block;
	opacity: 1;
}
#search-modal .search-form {
	display: flex;
	gap: 12px;
	margin: 0;
}
#search-modal .search-form > label {
	flex-grow: 1;
}
#search-modal .search-field {
	max-width: 320px;
	width: 100%;
}
#search-modal .search-submit {
	max-width: max-content;
}
#search-modal .search-submit::after {
	display: none;
}

.search-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	cursor: pointer;
}

/* modal window */
.search-modal__content {
	position: absolute;
	top: 130px;
	right: 160px;
	max-width: 380px;
	margin: 0 auto;
	padding: 24px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
}

/* close button */
.search-modal__close {
	display: none;
	position: absolute;
	top: -12px;
	right: -12px;
	font-size: 1.5rem;
	width: 36px;
	height: 36px;
	background-color: #fff;
	line-height: 1;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: var(--wp--preset--shadow--soft);
}