/* TVS Waitlist — frontend */
.tvs-wl-box {
	--tvs-brand: #F1C349;
	margin: 20px 0;
	padding: 24px;
	border: 1px solid #ececec;
	border-radius: 10px;
	background: #fff;
	font-family: Helvetica, Arial, sans-serif;
	max-width: 480px;
}
.tvs-wl-counter { margin-bottom: 18px; }
.tvs-wl-counter-bar {
	height: 8px;
	border-radius: 999px;
	background: #f0f0ee;
	overflow: hidden;
}
.tvs-wl-counter-bar span {
	display: block;
	height: 100%;
	background: var(--tvs-brand);
	transition: width .4s ease;
}
.tvs-wl-counter-text {
	margin: 8px 0 0;
	font-size: 14px;
	color: #3a3a3a;
}
.tvs-wl-soldout {
	margin: 0 0 16px;
	padding: 10px 14px;
	background: #fdf6e3;
	border: 1px solid var(--tvs-brand);
	border-radius: 8px;
	font-size: 14px;
	color: #1a1a1a;
}
.tvs-wl-field { margin-bottom: 14px; }
.tvs-wl-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #1a1a1a;
}
.tvs-wl-field input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d8d8d4;
	border-radius: 8px;
	font-size: 15px;
	box-sizing: border-box;
}
.tvs-wl-field input:focus {
	outline: none;
	border-color: var(--tvs-brand);
	box-shadow: 0 0 0 3px rgba(241, 195, 73, .2);
}
.tvs-wl-consent {
	margin-bottom: 16px;
	font-size: 13px;
	color: #6a6a6a;
}
.tvs-wl-consent label { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; }
.tvs-wl-submit {
	width: 100%;
	padding: 14px 20px;
	background: var(--tvs-brand);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .3px;
	cursor: pointer;
	transition: filter .15s ease;
}
.tvs-wl-submit:hover { filter: brightness(.95); }
.tvs-wl-submit:disabled { opacity: .6; cursor: default; }
.tvs-wl-message {
	margin-top: 14px;
	font-size: 14px;
	line-height: 20px;
	min-height: 1px;
}
.tvs-wl-message.is-success { color: #237a4b; }
.tvs-wl-message.is-error { color: #b3261e; }
.tvs-wl-message.is-info { color: #7a5d00; }
.tvs-wl-spots { font-weight: inherit; }
