/* Webklient Forms – záměrně neutrální styl, který přebírá typografii šablony. */

.wkf-form {
	max-width: 100%;
}

.wkf-field {
	margin: 0 0 1.25rem;
}

.wkf-label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.4rem;
}

.wkf-req {
	color: #d63638;
}

.wkf-form input[type="text"],
.wkf-form input[type="email"],
.wkf-form input[type="tel"],
.wkf-form select,
.wkf-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 0.55rem 0.75rem;
	border: 1px solid #c8c8c8;
	border-radius: 4px;
	background: #fff;
	font: inherit;
}

.wkf-form input:focus,
.wkf-form select:focus,
.wkf-form textarea:focus {
	outline: 2px solid transparent;
	border-color: #666;
	box-shadow: 0 0 0 1px #666;
}

.wkf-row {
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.wkf-row .wkf-col {
	flex: 1 1 220px;
}

.wkf-checkboxes {
	border: 0;
	padding: 0;
}

.wkf-checkboxes legend {
	padding: 0;
}

.wkf-check {
	display: block;
	margin: 0.25rem 0;
	font-weight: 400;
	cursor: pointer;
}

.wkf-checkboxes-inline .wkf-check {
	display: inline-block;
	margin-right: 1.25rem;
}

.wkf-dropzone {
	position: relative;
	border: 1px dashed #b5b5b5;
	border-radius: 4px;
	background: #f5f5f5;
	padding: 2rem 1rem;
	text-align: center;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.wkf-dropzone input[type="file"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.wkf-dropzone.wkf-dragover {
	background: #ececec;
	border-color: #666;
}

.wkf-dropzone-file {
	display: block;
	margin-top: 0.5rem;
	font-weight: 600;
	word-break: break-all;
}

.wkf-hint {
	font-size: 0.85em;
	color: #666;
	margin-top: 0.4rem;
}

.wkf-antispam-hint {
	font-weight: 400;
	margin: 0 0 0.4rem;
}

.wkf-empty {
	color: #666;
	font-style: italic;
}

/* Honeypot – skryté pole proti spamu. */
.wkf-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.wkf-message {
	display: none;
	margin: 0 0 1.25rem;
	padding: 0.75rem 1rem;
	border-radius: 4px;
}

.wkf-message-error {
	display: block;
	background: #fcebea;
	color: #8a1f1c;
	border: 1px solid #e7b3b1;
}

.wkf-message-success {
	display: block;
	background: #edf7ed;
	color: #1e4620;
	border: 1px solid #b7dfb9;
}

.wkf-submit {
	cursor: pointer;
}

.wkf-submit[disabled] {
	opacity: 0.6;
	cursor: wait;
}

.wkf-turnstile {
	min-height: 65px;
}
