/* KnorrTec Quote Request – frontend styles
   Neutral baseline that inherits the active theme's typography. */

.knorrtec-qr-on-request {
	font-style: italic;
	color: #555;
}

/* Single product */
.knorrtec-qr-single {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .75rem;
	margin: 1.5em 0;
}
.knorrtec-qr-single label { font-weight: 600; }
.knorrtec-qr-qty-input { width: 5rem; }
.knorrtec-qr-cart-link { margin-left: auto; text-decoration: underline; }

/* Mini widget */
.knorrtec-qr-mini {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .4em .8em;
	border: 1px solid currentColor;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
}
.knorrtec-qr-mini .count {
	display: inline-block;
	min-width: 1.4em;
	padding: 0 .3em;
	text-align: center;
	background: currentColor;
	color: #fff;
	border-radius: 999px;
	font-size: .85em;
}
.knorrtec-qr-mini .count:empty::before { content: "0"; }
.knorrtec-qr-mini > .count {
	/* restore color inheritance for the text inside the pill */
	color: inherit;
}

/* Flash toast */
.knorrtec-qr-flash {
	display: inline-block;
	margin-left: .75em;
	padding: .2em .6em;
	background: #e6f4ea;
	color: #1e6e1e;
	border-radius: 3px;
	font-size: .9em;
}
.knorrtec-qr-flash.is-error {
	background: #fbeaea;
	color: #9b1c1c;
}

/* Quote page */
.knorrtec-qr-page { max-width: 900px; }
.knorrtec-qr-page .knorrtec-qr-success,
.knorrtec-qr-page .knorrtec-qr-error {
	padding: 1em 1.25em;
	border-radius: 4px;
	margin-bottom: 1.5em;
}
.knorrtec-qr-page .knorrtec-qr-success { background: #e6f4ea; color: #1e6e1e; }
.knorrtec-qr-page .knorrtec-qr-error   { background: #fbeaea; color: #9b1c1c; }

.knorrtec-qr-items {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5em;
}
.knorrtec-qr-items th,
.knorrtec-qr-items td {
	padding: .6em .75em;
	border-bottom: 1px solid #e0e0e0;
	vertical-align: middle;
	text-align: left;
}
.knorrtec-qr-items th {
	background: #f6f6f6;
	font-weight: 600;
}
.knorrtec-qr-items .knorrtec-qr-qty { width: 5rem; }
.knorrtec-qr-items .knorrtec-qr-note { width: 100%; min-width: 10rem; }
.knorrtec-qr-remove {
	background: transparent;
	border: 0;
	cursor: pointer;
	font-size: 1.4em;
	line-height: 1;
	color: #999;
	padding: .1em .4em;
}
.knorrtec-qr-remove:hover { color: #c00; }

/* Form */
.knorrtec-qr-form h3 { margin-top: 2em; }
.knorrtec-qr-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1em;
	margin: 1em 0;
}
.knorrtec-qr-grid label,
.knorrtec-qr-message,
.knorrtec-qr-consent {
	display: block;
	font-weight: 600;
}
.knorrtec-qr-grid input,
.knorrtec-qr-message textarea {
	width: 100%;
	margin-top: .25em;
	padding: .5em .6em;
	font-weight: normal;
}
.knorrtec-qr-message { margin: 1em 0; }
.knorrtec-qr-consent {
	display: flex;
	align-items: flex-start;
	gap: .5em;
	font-weight: normal;
	margin: 1.5em 0;
}
.knorrtec-qr-consent input[type="checkbox"] { margin-top: .35em; }

@media (max-width: 640px) {
	.knorrtec-qr-grid { grid-template-columns: 1fr; }
	.knorrtec-qr-items thead { display: none; }
	.knorrtec-qr-items tr {
		display: grid;
		grid-template-columns: 1fr auto;
		gap: .5em;
		padding: .6em 0;
	}
	.knorrtec-qr-items td { border: 0; padding: 0; }
}
