/* ---------------------------------------------------------------------
 * VFC Commercianti - stili frontend
 * Modulo di richiesta iscrizione + etichetta prezzo riservato.
 * ------------------------------------------------------------------- */

.vfc-form-richiesta {
	max-width: 480px;
	margin: 0 auto;
	padding: 2em;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	box-sizing: border-box;
}

.vfc-form-richiesta * {
	box-sizing: border-box;
}

.vfc-form-richiesta p {
	margin: 0 0 1.2em;
}

.vfc-form-richiesta label {
	display: block;
	font-weight: 600;
	font-size: 0.92em;
	margin-bottom: 0.4em;
	color: #23282d;
}

.vfc-form-richiesta input[type="text"],
.vfc-form-richiesta input[type="tel"],
.vfc-form-richiesta input[type="email"] {
	width: 100%;
	padding: 0.65em 0.8em;
	border: 1px solid #d0d5dd;
	border-radius: 6px;
	font-size: 1em;
	background: #fafafa;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vfc-form-richiesta input[type="text"]:focus,
.vfc-form-richiesta input[type="tel"]:focus,
.vfc-form-richiesta input[type="email"]:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.12);
	background: #fff;
}

.vfc-form-richiesta .vfc-privacy label {
	font-weight: normal;
	font-size: 0.9em;
	display: flex;
	align-items: flex-start;
	gap: 0.6em;
	color: #444;
}

.vfc-form-richiesta .vfc-privacy input[type="checkbox"] {
	margin-top: 0.2em;
	flex-shrink: 0;
}

.vfc-form-richiesta button[type="submit"] {
	display: inline-block;
	width: 100%;
	padding: 0.8em 1.2em;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease;
}

.vfc-form-richiesta button[type="submit"]:hover {
	background: #135e96;
}

.vfc-testo-introduttivo {
	max-width: 480px;
	margin: 0 auto 1.4em;
	font-size: 0.95em;
	line-height: 1.55;
	color: #444;
}

.vfc-testo-introduttivo p:last-child {
	margin-bottom: 0;
}

.vfc-messaggio {
	max-width: 480px;
	margin: 0 auto 1.5em;
	padding: 1.1em 1.3em;
	border-radius: 8px;
	font-size: 0.98em;
	line-height: 1.5;
}

.vfc-messaggio p {
	margin: 0;
}

.vfc-messaggio-successo {
	background: #eafaf1;
	border: 1px solid #b7e4c7;
	color: #1e6b3c;
}

.vfc-messaggio-errore {
	background: #fdecea;
	border: 1px solid #f3c2bd;
	color: #a72a1e;
}

/* Prezzo riservato commercianti, mostrato sulla scheda prodotto */
.vfc-prezzo-wrap {
	display: inline-block;
}

.vfc-prezzo-label {
	display: block;
	font-size: 0.72em;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 600;
	color: #b8860b;
	margin-top: 0.25em;
}

@media (max-width: 600px) {
	.vfc-form-richiesta,
	.vfc-messaggio {
		padding: 1.4em;
		border-radius: 0;
	}
}
