/**
 * Lubiwood – company Tax ID checkout fields.
 * Pure-CSS reveal: the company + tax id fields are hidden until the "purchasing as a company"
 * checkbox is ticked. Uses native :has(:checked) — no JS event to miss, and it survives FunnelKit's
 * AJAX checkout re-renders (unlike a JS show/hide). Server-side validation stays authoritative.
 */
.lubiwood-company-block {
	clear: both;
	float: none;
	width: 100%;
	margin: 10px 0 6px;
}

/* Company name + Tax ID stay hidden until the "purchasing as a company" checkbox is checked. */
.lubiwood-company-fields {
	display: none;
	margin-top: 10px;
}
.lubiwood-company-block:has( #lubiwood_is_company:checked ) .lubiwood-company-fields {
	display: block;
}
