/* Cleaner UCWRG — Restock notifications form */
.cleaner-ucwrg-waitlist {
	border: 1px solid #d0d0d0;
	background: #fafafa;
	padding: 1.1em 1.25em;
	border-radius: 6px;
	margin: 1.2em 0;
}
.cleaner-ucwrg-waitlist.is-hidden {
	display: none;
}
.cleaner-ucwrg-waitlist__form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6em 0.8em;
	align-items: center;
}
.cleaner-ucwrg-waitlist__intro {
	flex: 1 1 100%;
	margin: 0;
	font-size: 0.95em;
	font-weight: 600;
	line-height: 1.35;
}
.cleaner-ucwrg-waitlist__field {
	/* Row: "Email *" label, then the input stretches to fill the space up to the button.
	   !important because the Breakdance theme forces label{display:block}. */
	display: flex !important;
	flex-direction: row;
	align-items: center;
	gap: 0.5em;
	flex: 1 1 auto;
	font-size: 0.85em;
}
.cleaner-ucwrg-waitlist__field > span {
	flex: 0 0 auto;
	white-space: nowrap;
}
.cleaner-ucwrg-waitlist__field input {
	flex: 1 1 auto;
	width: auto;
	min-width: 0;
	height: 42px;
	box-sizing: border-box;
	padding: 0.55em 0.7em;
	border: 1px solid #bbb;
	border-radius: 4px;
	font: inherit;
}
.cleaner-ucwrg-waitlist__checkbox {
	flex: 1 1 100%;
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	font-size: 0.85em;
}
.cleaner-ucwrg-waitlist__checkbox input { margin-top: 3px; }
.cleaner-ucwrg-waitlist__submit {
	flex: 0 0 auto;
	align-self: center;
	height: 42px;
	box-sizing: border-box;
	padding: 0 1.2em;
	border: 1px solid #111;
	border-radius: 4px;
	background: #111;
	color: #fff;
	font-family: inherit;
	font-size: 0.85em;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
}
.cleaner-ucwrg-waitlist__submit:hover {
	background: #000;
	border-color: #000;
}
.cleaner-ucwrg-waitlist__status {
	flex: 1 1 100%;
	margin: 0;
	font-size: 0.9em;
	min-height: 1.2em;
}
/* No message → collapse it so the box doesn't keep empty space at the bottom. */
.cleaner-ucwrg-waitlist__status:empty {
	display: none;
}
.cleaner-ucwrg-waitlist__status.is-success { color: #2e7d32; }
.cleaner-ucwrg-waitlist__status.is-error   { color: #b03030; }
.cleaner-ucwrg-waitlist.is-submitted .cleaner-ucwrg-waitlist__form > :not(.cleaner-ucwrg-waitlist__status) {
	display: none;
}
