/* KCM 2026 inschrijfformulier — losstaand, geen afhankelijkheid van het theme */
.kcm-form-wrapper {
	max-width: 900px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.5;
	box-sizing: border-box;
	color: #000;
}
.kcm-form-wrapper * {
	box-sizing: border-box;
}

.kcm-heading {
	font-size: 1.4em;
	font-weight: 700;
	margin: 2em 0 1em;
}
.kcm-heading:first-of-type {
	margin-top: 0.5em;
}

.kcm-notice {
	padding: 14px 18px;
	border-radius: 6px;
	margin-bottom: 1.5em;
}
.kcm-notice-success {
	background: #eaf6ec;
	border: 1px solid #8fce9c;
	color: #000;
}
.kcm-notice-error {
	background: #fbeaea;
	border: 1px solid #e2a1a1;
	color: #000;
}
.kcm-notice ul {
	margin: 0.5em 0 0 1.2em;
}

/* Twee-koloms grid op desktop/tablet, één kolom op mobiel (links-boven, rechts-eronder) */
.kcm-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 40px;
}
.kcm-col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media (max-width: 680px) {
	.kcm-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.kcm-col {
		gap: 16px;
	}
	.kcm-col-left {
		margin-bottom: 16px;
	}
}

.kcm-field label,
.kcm-radio-label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.kcm-field input[type="text"],
.kcm-field input[type="email"],
.kcm-field input[type="tel"],
.kcm-field input[type="date"],
.kcm-field select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #c9c9c9;
	border-radius: 4px;
	font-size: 1em;
	background: #fff;
}

.kcm-field input:focus,
.kcm-field select:focus {
	outline: 2px solid #2271b1;
	outline-offset: 1px;
}

.kcm-req {
	color: #000;
}

.kcm-inline-pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 20px;
}
@media (max-width: 420px) {
	.kcm-inline-pair {
		grid-template-columns: 1fr;
	}
}

.kcm-field-radio {
	margin-top: 4px;
}
.kcm-radio-option {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 400;
	margin-right: 20px;
}
.kcm-radio-option input {
	width: auto;
}

.kcm-field-checkbox label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 400;
}
.kcm-field-checkbox input[type="checkbox"] {
	width: auto;
	margin-top: 4px;
	flex-shrink: 0;
}

.kcm-hint {
	margin: 4px 0 0;
	font-size: 0.85em;
	color: #000;
}

/* Honeypot: verborgen voor mensen, blijft bereikbaar voor bots */
.kcm-honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
	height: 0;
	overflow: hidden;
}

.kcm-dog-block {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	background: #fafafa;
}
.kcm-dog-block-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}
.kcm-dog-block-header h3 {
	margin: 0;
	font-size: 1.1em;
}

.kcm-dog-price {
	font-weight: 600;
}

.kcm-koppel-wrapper {
	margin: 10px 0 20px;
	padding: 16px 18px;
	background: #fff7e6;
	border: 1px solid #f0d999;
	border-radius: 6px;
}
.kcm-koppel-pair-row {
	display: flex;
	align-items: flex-end;
	gap: 14px;
	margin-bottom: 14px;
}
.kcm-koppel-pair-row:last-child {
	margin-bottom: 0;
}
.kcm-koppel-pair-row .kcm-field {
	flex: 1 1 0;
}
.kcm-koppel-plus {
	font-weight: 700;
	font-size: 1.2em;
	padding-bottom: 10px;
}
@media (max-width: 620px) {
	.kcm-koppel-pair-row {
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
	}
	.kcm-koppel-plus {
		text-align: center;
		padding: 0;
	}
}

.kcm-total-box {
	font-size: 1.2em;
	font-weight: 700;
	margin: 20px 0;
	padding: 14px 18px;
	background: #f1f6fb;
	border-radius: 6px;
	border: 1px solid #cfe0ef;
}

.kcm-button {
	cursor: pointer;
	border-radius: 4px;
	font-size: 1em;
	padding: 10px 20px;
	border: 1px solid transparent;
}
.kcm-button-primary {
	background: #2271b1;
	color: #fff;
	border-color: #2271b1;
	font-weight: 700;
}
.kcm-button-primary:hover {
	background: #195a8d;
}
.kcm-button-secondary {
	background: #fff;
	color: #2271b1;
	border-color: #2271b1;
	margin-bottom: 10px;
}
.kcm-button-link {
	background: none;
	border: none;
	color: #fff !important;
	text-decoration: underline;
	padding: 4px 5px;
}
