/* ─── Toggle B2B : les champs sont cachés par défaut ───────────── */
/* WooCommerce ajoute la classe sur le wrapper <p> du champ (form-row). */

.bco-business-field {
	display: none;
}

/* Affichage quand la case est cochée (classe sur form.woocommerce-checkout). */
/* !important pour surcharger les inline styles éventuels d'Elementor Pro.  */
/* #billing_company_field ciblé par ID car Elementor réécrit les class des  */
/* champs natifs et peut supprimer .bco-business-field sur billing_company.  */
form.woocommerce-checkout.bco-business-active .bco-business-field,
form.woocommerce-checkout.bco-business-active #billing_company_field,
.bco-business-active #billing_company_field {
	display: block !important;
}

/* ─── Case à cocher "Je commande pour une entreprise" ───────────── */

.bco-business-toggle {
	margin-bottom: 1.25em;
}

.bco-business-toggle label {
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5em;
	font-size: 1em;
}

.bco-business-toggle input[type="checkbox"] {
	width: 1.1em;
	height: 1.1em;
	cursor: pointer;
	flex-shrink: 0;
}

/* ─── Messages d'erreur inline (créés dynamiquement par le JS) ─── */

.bco-field-error-msg {
	display: none;
	color: #e2401c;
	font-size: 0.85em;
	margin-top: 0.2em;
	margin-bottom: 0.4em;
	padding-left: 0.2em;
}

input.bco-field-error {
	border-color: #e2401c !important;
	box-shadow: 0 0 0 1px #e2401c !important;
}

/* ─── Bloc info B2B (admin / Mon Compte / PDF) ──────────────────── */

.bco-business-info {
	margin: 1em 0 0.5em;
}

.bco-business-info h4 {
	font-size: 0.8em;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #777;
	margin: 0 0 0.5em;
	padding-bottom: 0.3em;
	border-bottom: 1px solid #e5e5e5;
}

.bco-business-info dl {
	margin: 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.2em 0.9em;
}

.bco-business-info dt {
	font-weight: 600;
	color: #555;
	font-size: 0.875em;
	white-space: nowrap;
}

.bco-business-info dd {
	margin: 0;
	font-size: 0.875em;
	color: #222;
}

/* ─── PDF : bloc compact ────────────────────────────────────────── */

.bco-business-pdf {
	margin: 0.5em 0;
	font-size: 0.85em;
	line-height: 1.6;
}

.bco-business-pdf strong {
	display: block;
	margin-bottom: 0.2em;
}
