/**
 * Estilos del formulario "Avísame cuando esté en stock".
 * Diseñado para heredar el estilo del tema y de los botones de WooCommerce.
 */

.bisn-wrap {
	margin: 1.5em 0;
	padding: 1.25em;
	border: 1px solid rgba( 0, 0, 0, 0.08 );
	border-radius: 8px;
	background: rgba( 0, 0, 0, 0.02 );
}

.bisn-wrap.bisn-hidden {
	display: none;
}

.bisn-title {
	margin: 0 0 0.75em;
	font-weight: 600;
	font-size: 1em;
	line-height: 1.3;
}

.bisn-field-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	align-items: stretch;
}

.bisn-email.input-text {
	flex: 1 1 200px;
	min-width: 0;
	padding: 0.7em 0.9em;
	line-height: 1.4;
}

/* El botón hereda del tema/WooCommerce gracias a las clases .button .alt.
   Solo aseguramos que no se rompa el layout flex. */
.bisn-submit {
	flex: 0 0 auto;
	cursor: pointer;
	white-space: nowrap;
}

.bisn-submit[disabled] {
	opacity: 0.6;
	cursor: default;
}

.bisn-message {
	margin: 0.75em 0 0;
	font-size: 0.9em;
	min-height: 1em;
}

.bisn-message.bisn-ok {
	color: #2e7d32;
}

.bisn-message.bisn-ko {
	color: #c62828;
}

/* Botón "Avísame" en el listado de la tienda. */
.bisn-loop-button {
	display: inline-block;
}

@media ( max-width: 480px ) {
	.bisn-field-row {
		flex-direction: column;
	}

	.bisn-submit {
		width: 100%;
	}
}
