/* Feedbackformulieren (probleem melden / winkel voorstellen) */
.tcg-feedback {
	max-width: 640px;
	margin: 24px 0;
	font-family: -apple-system, BlinkMacSystemFont, Inter, "Segoe UI", sans-serif;
	color: #0f172a;
}

.tcg-fb-notice {
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	margin: 0 0 16px;
}

.tcg-fb-notice--ok {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #166534;
}

.tcg-fb-notice--err {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

.tcg-fb-block {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	background: #fff;
	margin-bottom: 12px;
}

.tcg-fb-block summary {
	cursor: pointer;
	padding: 14px 18px;
	font-size: 15px;
	font-weight: 600;
	list-style-position: inside;
}

.tcg-fb-block[open] summary {
	border-bottom: 1px solid #e2e8f0;
}

.tcg-fb-form {
	padding: 18px;
}

.tcg-fb-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 12px;
}

@media (max-width: 600px) {
	.tcg-fb-row {
		grid-template-columns: 1fr;
	}
}

.tcg-fb-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0 0 14px;
}

.tcg-fb-field label {
	font-size: 13px;
	font-weight: 600;
	color: #334155;
}

.tcg-fb-field .req {
	color: #dc2626;
}

.tcg-fb-field input,
.tcg-fb-field select,
.tcg-fb-field textarea {
	width: 100%;
	padding: 9px 12px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	font: inherit;
	font-size: 14px;
	background: #fff;
	box-sizing: border-box;
}

.tcg-fb-field input:focus,
.tcg-fb-field select:focus,
.tcg-fb-field textarea:focus {
	outline: 2px solid #1f3a5f;
	outline-offset: -1px;
}

.tcg-fb-store-name {
	font-size: 14px;
	margin: 0 0 14px;
}

.tcg-fb-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.tcg-fb-submit {
	display: inline-block;
	padding: 10px 18px;
	border: none;
	border-radius: 8px;
	background: #1f3a5f;
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}

.tcg-fb-submit:hover {
	background: #2b4d7a;
}
