/* ==================================================================
 * 31. pnp_coa — certificaten van analyse
 * ================================================================== */

.pnp-coa {
	margin: 32px 0;
	font-size: 15px;
}

.pnp-coa__concept {
	margin: 0 0 14px;
	padding: 9px 13px;
	border-radius: 8px;
	background: #fff4d6;
	color: #7a4b00;
	font-size: 13px;
	line-height: 1.5;
}

.pnp-coa__kop {
	margin: 0 0 6px;
	font-size: 20px;
	line-height: 1.25;
}

.pnp-coa__intro {
	margin: 0 0 18px;
	color: #5a5a6b;
	font-size: 14px;
	line-height: 1.6;
}

.pnp-coa__leeg {
	margin: 0;
	padding: 12px 14px;
	border: 1px dashed #d9d4e6;
	border-radius: 8px;
	color: #7a7a8c;
	font-size: 13px;
}

/* ---- tabel ---- */

.pnp-coa__tabelwrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.pnp-coa__tabel {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.pnp-coa__tabel th {
	padding: 0 12px 8px 0;
	border-bottom: 1px solid #e6e2f0;
	color: #7a7a8c;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .02em;
	text-align: left;
	text-transform: uppercase;
	white-space: nowrap;
}

.pnp-coa__tabel td {
	padding: 13px 12px 13px 0;
	border-bottom: 1px solid #f0edf7;
	vertical-align: middle;
}

.pnp-coa__zuiver {
	display: inline-block;
	padding: 3px 9px;
	border-radius: 20px;
	background: #e7f7ed;
	color: #12633a;
	font-weight: 700;
	font-size: 13px;
}

/* ---- knop in de rij ---- */

.pnp-coa .pnp-coa__open {
	padding: 8px 15px !important;
	min-width: 0 !important;
	border: 1px solid var(--pnp-purple, #5b2ea6);
	border-radius: 8px;
	background: transparent;
	color: var(--pnp-purple, #5b2ea6);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
	transition: background .15s, color .15s;
}

.pnp-coa .pnp-coa__open:hover,
.pnp-coa .pnp-coa__open:focus,
.pnp-coa .pnp-coa__open:active {
	background: var(--pnp-purple, #5b2ea6) !important;
	border-color: var(--pnp-purple, #5b2ea6) !important;
	color: #fff !important;
	outline: none;
}

/* ---- mobiel: tabel wordt kaarten ---- */

@media (max-width: 600px) {

	.pnp-coa__tabel thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
	}

	.pnp-coa__tabel,
	.pnp-coa__tabel tbody,
	.pnp-coa__tabel tr,
	.pnp-coa__tabel td {
		display: block;
		width: 100%;
	}

	.pnp-coa__tabel tr {
		margin: 0 0 12px;
		padding: 14px;
		border: 1px solid #e6e2f0;
		border-radius: 12px;
		background: #fff;
	}

	.pnp-coa__tabel td {
		display: flex;
		gap: 12px;
		align-items: center;
		justify-content: space-between;
		padding: 5px 0;
		border: 0;
		text-align: right;
	}

	.pnp-coa__tabel td::before {
		content: attr(data-kop);
		flex: 0 0 auto;
		color: #7a7a8c;
		font-size: 12px;
		font-weight: 600;
		text-align: left;
		text-transform: uppercase;
	}

	.pnp-coa__tabel td[data-kop="Rapport"] {
		display: block;
		margin: 10px 0 0;
		padding: 12px 0 0;
		border-top: 1px solid #f0edf7;
	}

	.pnp-coa__tabel td[data-kop="Rapport"]::before {
		content: none;
	}

	.pnp-coa .pnp-coa__open {
		width: 100%;
		padding: 12px 15px !important;
		font-size: 14px;
	}
}

/* lokvak tegen bots — moet voor mensen onzichtbaar zijn */
.pnp-coa__lok {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}


.pnp-coa__samen {
	display: inline-block;
	color: #2b2b3a;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.45;
}

/* ==================================================================
 * 31b. pnp_coa — overzichtsrooster en productstrip
 * ================================================================== */

.pnp-coa-overzicht {
	margin: 28px 0;
}

.pnp-coa-rooster {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

/* ---- kaart ---- */

.pnp-coa-kaart {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #e6e2f0;
	border-radius: 16px;
	background: #fff;
	color: inherit;
	text-decoration: none;
	transition: border-color .18s, box-shadow .18s, transform .18s;
}

.pnp-coa-kaart:hover,
.pnp-coa-kaart:focus {
	border-color: var(--pnp-purple, #5b2ea6);
	box-shadow: 0 10px 26px rgba(91, 46, 166, .13);
	color: inherit;
	text-decoration: none;
	transform: translateY(-2px);
}

.pnp-coa-kaart__beeld {
	display: block;
	padding: 14px 14px 0;
	background: linear-gradient(180deg, #faf9fd 0%, #fff 100%);
	text-align: center;
}

.pnp-coa-kaart__beeld img {
	display: block;
	width: 100%;
	max-width: 150px;
	height: auto;
	margin: 0 auto;
}

.pnp-coa-kaart__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	padding: 12px 14px 14px;
}

.pnp-coa-kaart__naam {
	font-size: 14.5px;
	font-weight: 700;
	line-height: 1.3;
}

.pnp-coa-kaart__zuiver {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 20px;
	background: #e7f7ed;
	color: #12633a;
	font-size: 11.5px;
	font-weight: 700;
}

.pnp-coa-kaart__zuiver.is-mengsel {
	background: #eee9fa;
	color: #4a2288;
}

.pnp-coa-kaart__meta {
	color: #8a8a99;
	font-size: 11.5px;
	line-height: 1.4;
}

.pnp-coa-kaart__knop {
	display: block;
	width: 100%;
	margin: 9px 0 0;
	padding: 10px 12px;
	border-radius: 9px;
	background: var(--pnp-purple, #5b2ea6);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}

.pnp-coa-kaart:hover .pnp-coa-kaart__knop,
.pnp-coa-kaart:focus .pnp-coa-kaart__knop {
	background: var(--pnp-purple-dark, #47217f);
}


/* ==================================================================
 * 31c. pnp_coa — detailpagina in productpagina-stijl
 * ================================================================== */

.pnp-coa-pdp {
	margin: 24px 0 40px;
}

.pnp-coa-pdp__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	align-items: start;
}

/* ---- beeld ---- */

.pnp-coa-pdp__beeld {
	overflow: hidden;
	padding: 18px;
	border: 1px solid #e6e2f0;
	border-radius: 20px;
	background: linear-gradient(160deg, #faf9fd 0%, #fff 70%);
	text-align: center;
}

.pnp-coa-pdp__beeld img {
	display: block;
	width: 100%;
	max-width: 300px;
	height: auto;
	margin: 0 auto;
}

/* ---- kop ---- */

.pnp-coa-pdp__label {
	display: block;
	margin: 0 0 6px;
	color: var(--pnp-purple, #5b2ea6);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.pnp-coa-pdp__naam {
	margin: 0 0 14px;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.15;
}

/* ---- de uitslag, op de plek van de prijs ---- */

.pnp-coa-pdp__uitslag {
	margin: 0 0 18px;
	padding: 15px 18px;
	border: 1px solid #cfeadb;
	border-radius: 14px;
	background: #f1faf5;
}

.pnp-coa-pdp__getal {
	display: block;
	color: #0f5c34;
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.01em;
}

.pnp-coa-pdp__procent {
	margin-left: 2px;
	font-size: 24px;
	font-weight: 700;
}

.pnp-coa-pdp__onder {
	display: block;
	margin: 5px 0 0;
	color: #3c7a58;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.pnp-coa-pdp__mengsel {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pnp-coa-pdp__mengsel li {
	margin: 0 0 3px;
	color: #0f5c34;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
}

/* ---- specificaties ---- */

.pnp-coa-pdp__specs {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
	border-top: 1px solid #f0edf7;
}

.pnp-coa-pdp__specs li {
	display: flex;
	gap: 14px;
	align-items: baseline;
	justify-content: space-between;
	margin: 0;
	padding: 10px 0;
	border-bottom: 1px solid #f0edf7;
	font-size: 14px;
}

.pnp-coa-pdp__specs span {
	flex: 0 0 auto;
	color: #7a7a8c;
}

.pnp-coa-pdp__specs strong {
	text-align: right;
	word-break: break-word;
}

/* ---- pluspunten ---- */

.pnp-coa-pdp__usp {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.pnp-coa-pdp__usp li {
	position: relative;
	margin: 0 0 7px;
	padding-left: 25px;
	color: #3a3a4a;
	font-size: 13.5px;
	line-height: 1.45;
}

.pnp-coa-pdp__usp li::before {
	position: absolute;
	top: 1px;
	left: 0;
	display: block;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: #e7f7ed url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2312633a'%3E%3Cpath d='M8.2 14.6 4.4 10.8l1.3-1.3 2.5 2.5 5.8-5.8 1.3 1.3z'/%3E%3C/svg%3E") center/13px no-repeat;
	content: "";
}

/* ---- de koopbalk ---- */

.pnp-coa-koop {
	margin: 0 0 16px;
	padding: 18px;
	border: 1px solid #e0daf0;
	border-radius: 16px;
	background: #faf9fd;
	box-shadow: 0 3px 14px rgba(91, 46, 166, .06);
}

.pnp-coa-koop__kop {
	margin: 0 0 12px;
	font-size: 15.5px;
	font-weight: 700;
	line-height: 1.35;
}

.pnp-coa-koop .pnp-coa__batchnaam {
	color: #7a7a8c;
	font-weight: 500;
}

.pnp-coa-koop .pnp-coa__email {
	width: 100%;
	margin: 0 0 10px;
	padding: 14px 15px;
	border: 1px solid #d9d4e6;
	border-radius: 11px;
	background: #fff;
	font-size: 16px;           /* 16px voorkomt inzoomen op iOS */
	line-height: 1.3;
	-webkit-appearance: none;
	appearance: none;
}

.pnp-coa-koop .pnp-coa__email:focus {
	border-color: var(--pnp-purple, #5b2ea6);
	outline: none;
	box-shadow: 0 0 0 3px rgba(91, 46, 166, .13);
}

.pnp-coa .pnp-coa__verstuur,
.pnp-coa .pnp-coa__alleen {
	display: block;
	width: 100%;
	min-width: 0 !important;
	border-radius: 11px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
}

.pnp-coa .pnp-coa__verstuur {
	margin: 0 0 11px;
	padding: 20px 20px !important;
	border: 0;
	border-radius: 13px;
	background: var(--pnp-purple, #5b2ea6);
	color: #fff;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -.005em;
	box-shadow: 0 6px 18px rgba(91, 46, 166, .28);
}

.pnp-coa .pnp-coa__verstuur:hover,
.pnp-coa .pnp-coa__verstuur:focus,
.pnp-coa .pnp-coa__verstuur:active,
.pnp-coa .pnp-coa__verstuur:visited {
	background: var(--pnp-purple-dark, #47217f) !important;
	color: #fff !important;
	outline: none;
}

.pnp-coa .pnp-coa__alleen {
	margin: 0;
	padding: 11px 18px !important;
	border: 1px solid #d5cee8;
	border-radius: 10px;
	background: transparent;
	color: #6a6a7b;
	font-size: 13px;
	font-weight: 600;
}

.pnp-coa .pnp-coa__alleen:hover,
.pnp-coa .pnp-coa__alleen:focus,
.pnp-coa .pnp-coa__alleen:active {
	border-color: var(--pnp-purple, #5b2ea6) !important;
	background: #fff !important;
	color: var(--pnp-purple, #5b2ea6) !important;
	outline: none;
}

.pnp-coa .pnp-coa__verstuur[disabled],
.pnp-coa .pnp-coa__alleen[disabled] {
	opacity: .6;
	cursor: default;
}

/* ---- oudere batches ---- */

.pnp-coa-pdp__meer {
	margin: 34px 0 0;
	padding: 24px 0 0;
	border-top: 1px solid #ece9f4;
}

.pnp-coa-pdp__meerkop {
	margin: 0 0 14px;
	font-size: 17px;
	font-weight: 700;
}

/* ---- twee kolommen op grotere schermen ---- */

@media (min-width: 781px) {
	.pnp-coa-pdp__grid {
		grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
		gap: 36px;
	}
	.pnp-coa-pdp__naam { font-size: 30px; }
	.pnp-coa-pdp__getal { font-size: 46px; }
	.pnp-coa-koop { padding: 20px; }
	.pnp-coa .pnp-coa__verstuur { padding: 22px 22px !important; font-size: 18px; }
}

/* het theme geeft <p> in de content een eigen grootte; die moeten we hier winnen */
.pnp-coa .pnp-coa__klein,
.pnp-coa .pnp-coa-koop .pnp-coa__klein {
	margin: 12px 0 0 !important;
	color: #83839a !important;
	font-size: 12px !important;
	line-height: 1.55 !important;
}

.pnp-coa .pnp-coa__melding {
	font-size: 13.5px !important;
	line-height: 1.5 !important;
}

/* ===== Labrapport-link op de productpagina ===== */
.pnp-coa-link {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 12px 0 4px;
	padding: 8px 12px;
	border: 1px solid #cfeadb;
	border-radius: 10px;
	background: #f2fbf7;
	color: inherit;
	text-decoration: none !important;
	transition: border-color .18s ease, background .18s ease;
}
.pnp-coa-link:hover,
.pnp-coa-link:focus-visible {
	border-color: var(--pnp-groen, #0E9E70);
	background: #e8f7f0;
}
.pnp-coa-link__ico {
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #cfeadb;
	border-radius: 7px;
	background: #fff;
	color: var(--pnp-groen, #0E9E70);
}
.pnp-coa-link__ico svg { width: 15px; height: 15px; }
.pnp-coa-link__txt {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.pnp-coa-link__txt strong {
	font-size: 13.5px;
	line-height: 1.2;
	color: #0f5c34;
	text-decoration: none !important;
}
.pnp-coa-link__txt span {
	font-size: 11.5px;
	line-height: 1.25;
	color: #6b7f74;
	text-decoration: none !important;
}
.pnp-coa-link__pijl {
	margin-left: auto;
	flex: 0 0 auto;
	font-size: 16px;
	line-height: 1;
	color: var(--pnp-groen, #0E9E70);
	text-decoration: none !important;
}
@media (max-width: 600px) {
	.pnp-coa-link { margin: 11px 0 4px; padding: 7px 10px; gap: 9px; }
	.pnp-coa-link__ico { flex: 0 0 24px; width: 24px; height: 24px; }
	.pnp-coa-link__txt strong { font-size: 13px; }
	.pnp-coa-link__txt span { font-size: 11px; }
}
