/* Back-in-Stock notify box (PDP) */
.vale-bis {
	margin: 16px 0 8px;
	padding: 16px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	background: #fafafa;
}
.vale-bis[hidden] { display: none; }

.vale-bis__head {
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 10px;
	color: #333;
}
.vale-bis__title { font-weight: 700; color: #111; }
.vale-bis__sub   { color: #666; }

.vale-bis__form {
	display: flex;
	gap: 8px;
	align-items: stretch;
}
.vale-bis__email {
	flex: 1 1 auto;
	min-width: 0;
	height: 46px;
	padding: 0 14px;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	font-size: 14px;
	background: #fff;
	color: #111;
}
.vale-bis__email:focus {
	outline: none;
	border-color: #111;
}
.vale-bis__btn {
	flex: 0 0 auto;
	height: 46px;
	padding: 0 24px;
	border: 0;
	border-radius: 6px;
	background: #111;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.15s ease;
}
.vale-bis__btn:hover:not(:disabled) { background: #333; }
.vale-bis__btn:disabled { opacity: 0.55; cursor: default; }

.vale-bis__msg {
	margin-top: 10px;
	font-size: 13px;
	min-height: 1em;
}
.vale-bis__msg.is-ok  { color: #1a7f37; }
.vale-bis__msg.is-err { color: #b32d2e; }

/* Sold-out size buttons stay clickable → Notify me.
   The theme marks them .is-oos with `pointer-events:none; cursor:not-allowed`,
   which blocks the click entirely. Re-enable pointer events (JS also strips the
   `disabled` attribute pdp.js adds) so a sold-out size opens the notify box. */
.vale-size-opt.is-oos {
	position: relative;
	cursor: pointer !important;
	pointer-events: auto !important;
	opacity: 0.6;
}
.vale-size-opt.is-oos > span {
	text-decoration: line-through;
	text-decoration-color: rgba(0, 0, 0, 0.4);
}
.vale-size-opt.is-oos.is-active {
	border-color: #111;
	opacity: 1;
}

@media (max-width: 480px) {
	.vale-bis__form { flex-wrap: wrap; }
	.vale-bis__btn { width: 100%; }
}
