/*
 * "Breakout": de pagina/het thema waarin de shortcode staat heeft zelf een
 * smalle contentkolom, dus enkel max-width vergroten op .aetec-pvcalc had
 * geen effect (de ouder bleef de echte beperking, niet de plugin). Deze
 * buitenste wrapper (100vw + negatieve marges t.o.v. de viewport) breekt uit
 * die smalle kolom en spant zich edge-to-edge over het scherm; de eigenlijke
 * calculator (.aetec-pvcalc) wordt daarbinnen gecentreerd tot max. 1200px,
 * zodat de inhoud niet onbeperkt breed wordt op heel grote schermen.
 * Werkt het best op pagina's met één kolom content (geen zijbalk naast de
 * shortcode); bij een layout met zijbalk kan dit overlappen.
 */
.aetec-pvcalc-breakout {
	width: 100vw;
	box-sizing: border-box;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: max(16px, calc((100vw - 1200px) / 2));
	padding-right: max(16px, calc((100vw - 1200px) / 2));
}

.aetec-pvcalc {
	--aetec-green: #129d39;
	--aetec-green-dark: #0f7d2d;
	--aetec-text: #000;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	color: var(--aetec-text);
}

/* --- Voortgangsindicator -------------------------------------------- */

.aetec-pvcalc__progress {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
}

.aetec-pvcalc__dot {
	flex: 1 1 auto;
	height: 4px;
	border-radius: 2px;
	background: #e0e0e0;
	transition: opacity 0.15s ease;
}

.aetec-pvcalc__dot.is-active,
.aetec-pvcalc__dot.is-done {
	background: var(--aetec-green);
}

.aetec-pvcalc__dot.is-active {
	opacity: 1;
}

/* Afgewerkte stappen zijn aanklikbaar: zo kan de bezoeker terug naar een
   vorige stap springen i.p.v. enkel één stap terug via de "Vorige"-knop. */
.aetec-pvcalc__dot.is-done {
	opacity: 0.55;
	cursor: pointer;
}

.aetec-pvcalc__dot.is-done:hover,
.aetec-pvcalc__dot.is-done:focus {
	opacity: 0.9;
	outline: none;
}

/* --- Stappen ---------------------------------------------------------- */

.aetec-pvcalc__step {
	display: none;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 24px;
	background: #fafafa;
}

.aetec-pvcalc__step.is-active {
	display: block;
}

.aetec-pvcalc__step-title {
	margin: 0 0 6px;
	font-size: 20px;
}

.aetec-pvcalc__step-intro {
	margin: 0 0 16px;
	color: var(--aetec-text);
	font-size: 16px;
}

.aetec-pvcalc__field {
	margin-bottom: 16px;
}

.aetec-pvcalc__field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.aetec-pvcalc__field input[type="number"] {
	width: 100%;
	max-width: 280px;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 18px;
	font-family: inherit;
}

.aetec-pvcalc__input--error {
	border-color: #b91c1c !important;
}

/* --- Knoppen ------------------------------------------------------------ */

/*
 * !important hieronder op de knoppen/kaarten: sommige thema's hebben hun
 * eigen globale knopstijl (bv. via "button { ... }") die anders onze
 * achtergrond-/randkleur en tekstkleur overschrijft. Dit dwingt de
 * Aetec-stijl af, los van het thema.
 */
.aetec-pvcalc__btn {
	font-size: 17px;
	font-family: inherit;
	padding: 10px 22px;
	border-radius: 4px !important;
	cursor: pointer;
	border: none !important;
}

.aetec-pvcalc__btn--primary {
	background: var(--aetec-green) !important;
	color: #fff !important;
}

.aetec-pvcalc__btn--ghost {
	background: var(--aetec-green) !important;
	color: #fff !important;
	margin-top: 16px;
	padding: 8px 18px;
	opacity: 0.85;
}

.aetec-pvcalc__btn--ghost:hover {
	opacity: 1;
	color: #fff !important;
}

/* --- Keuzekaarten (scope / paneeltype / batterijtype) ------------------- */

.aetec-pvcalc__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	margin-bottom: 8px;
}

.aetec-pvcalc__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: 4px;
	background: #fff !important;
	border: 2px solid #ddd !important;
	border-radius: 8px !important;
	padding: 16px;
	cursor: pointer;
	font-family: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.aetec-pvcalc__card:hover {
	border-color: var(--aetec-green) !important;
}

.aetec-pvcalc__card.is-selected {
	border-color: var(--aetec-green) !important;
	box-shadow: 0 0 0 1px var(--aetec-green);
	background: var(--aetec-green) !important;
}

.aetec-pvcalc__card-title {
	font-weight: 700;
	font-size: 18px;
	color: inherit;
}

.aetec-pvcalc__card-sub {
	font-size: 14px;
	font-weight: 600;
	color: var(--aetec-green);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.aetec-pvcalc__card-text {
	font-size: 15px;
	color: var(--aetec-text);
	line-height: 1.4;
}

/* Geselecteerde kaart: groen blok, alle tekst wit */
.aetec-pvcalc__card.is-selected,
.aetec-pvcalc__card.is-selected .aetec-pvcalc__card-title,
.aetec-pvcalc__card.is-selected .aetec-pvcalc__card-sub,
.aetec-pvcalc__card.is-selected .aetec-pvcalc__card-text {
	color: #fff !important;
}

.aetec-pvcalc__card.is-selected .aetec-pvcalc__infoicon {
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
}

.aetec-pvcalc__cards--enclosure .aetec-pvcalc__card {
	min-height: 160px;
	padding: 20px;
}

/* --- Productafbeeldingen in keuzekaarten (nieuw v2.1) -------------------- */

/*
 * Productafbeelding binnen een kaart: gecentreerd, max. breedte 100%,
 * vaste max-height zodat de kaarten niet te hoog worden.
 * object-fit: contain garandeert dat het beeld nooit wordt afgesneden.
 */
.aetec-pvcalc__card-img {
	display: block;
	max-width: 100%;
	max-height: 110px;
	width: auto;
	height: auto;
	object-fit: contain;
	margin: 0 auto 10px;
	border-radius: 4px;
}

/*
 * Container voor meerdere afbeeldingen naast elkaar in een keuzekaart.
 * In v2.1.1 enkel nog relevant voor de paneel-selector (stap 3); de
 * batterij-keuzekaarten tonen geen afbeelding meer.
 */
.aetec-pvcalc__card-imgs {
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
	margin-bottom: 4px;
}

.aetec-pvcalc__card-imgs--multi .aetec-pvcalc__card-img {
	max-height: 80px;
	max-width: 45%;
	margin: 0;
}

/* --- Kwalitatief label op de batterijkaarten (i.p.v. kWh/€-cijfers) ----- */

.aetec-pvcalc__card-badge {
	display: inline-block;
	margin-top: 8px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(18, 157, 57, 0.1);
	color: var(--aetec-green);
	font-size: 14px;
	font-weight: 700;
}

.aetec-pvcalc__card.is-selected .aetec-pvcalc__card-badge {
	background: rgba(255, 255, 255, 0.25) !important;
	color: #fff !important;
}

/* --- Info-icoon + tooltip op de batterijkaarten ------------------------- */

.aetec-pvcalc__infoicon {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.08);
	color: #000;
	font-size: 13px;
	font-style: italic;
	font-weight: 700;
	font-family: Georgia, serif;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: help;
}

.aetec-pvcalc__infotip {
	display: none;
	position: absolute;
	top: 26px;
	right: 0;
	width: 200px;
	background: #333;
	color: #fff;
	padding: 10px 12px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.4;
	text-align: left;
	z-index: 10;
}

.aetec-pvcalc__infoicon:hover .aetec-pvcalc__infotip,
.aetec-pvcalc__infoicon:focus .aetec-pvcalc__infotip {
	display: block;
}

/* Variant voor het info-icoon binnen de vergelijkingstabel: daar is er geen
   kaart met position:relative om op te ankeren, dus inline i.p.v. absoluut
   gepositioneerd t.o.v. de tabelcel. */
.aetec-pvcalc__infoicon--inline {
	position: relative;
	top: auto;
	right: auto;
	display: inline-flex;
	vertical-align: middle;
	margin-left: 5px;
}

.aetec-pvcalc__infoicon--inline .aetec-pvcalc__infotip {
	top: 24px;
	right: auto;
	left: 0;
}

/* Bredere tooltip-variant voor langere uitleg (jaarverbruik-info,
   AIKO/Standaard-bullets, energieonafhankelijkheid-tip) - de standaard
   200px is te smal voor meer dan één korte zin. */
.aetec-pvcalc__infotip--wide {
	width: 280px;
}

.aetec-pvcalc__infotip p {
	margin: 0 0 6px;
}

.aetec-pvcalc__infotip p:last-child {
	margin-bottom: 0;
}

.aetec-pvcalc__infotip ul {
	margin: 0;
	padding-left: 16px;
}

.aetec-pvcalc__infotip li {
	margin-bottom: 3px;
}

.aetec-pvcalc__infotip li:last-child {
	margin-bottom: 0;
}

/* Afbeelding in een tooltip (bv. EMS / Eniris SmartgridOne, nieuw v2.1):
   volledige breedte van de tooltip, niet bijsnijden. */
.aetec-pvcalc__infotip-img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

/* Info-icoon binnen een <label> (stap 1, jaarverbruik): geen kaart met
   position:relative om op te ankeren, dus zelf relatief gepositioneerd,
   net als de tabel-variant. */
.aetec-pvcalc__field label .aetec-pvcalc__infoicon--inline {
	font-weight: 400;
}

/* Info-icoon binnen de Energieonafhankelijkheid-waarde (achter het
   percentage, sinds v1.9 - voorheen naast het label): iets groter dan de
   standaard inline-variant zodat het beter past naast de grote, vetgedrukte
   percentagetekst. */
.aetec-pvcalc__savings-value .aetec-pvcalc__infoicon--inline {
	width: 22px;
	height: 22px;
	font-size: 14px;
	margin-left: 8px;
	vertical-align: 6px;
}

/* --- Resultaat ----------------------------------------------------------- */

.aetec-pvcalc__results {
	margin-bottom: 12px;
}

.aetec-pvcalc__summary-intro {
	margin: 0 0 14px;
}

/* --- Switch-iconen op de resultaatstap (paneeltype/batterijtype live
   wisselen zonder terug door de wizard) -------------------------------- */

.aetec-pvcalc__switcher {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 6px;
}

.aetec-pvcalc__switchgroup {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.aetec-pvcalc__switchgroup-label {
	font-size: 14px;
	font-weight: 600;
	color: #000;
	margin-right: 2px;
}

.aetec-pvcalc__switchicon {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px 6px 12px;
	border: 2px solid #ddd !important;
	border-radius: 999px !important;
	background: #fff !important;
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	color: #000;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.aetec-pvcalc__switchicon:hover {
	border-color: var(--aetec-green) !important;
}

.aetec-pvcalc__switchicon.is-active {
	border-color: var(--aetec-green) !important;
	background: var(--aetec-green) !important;
	color: #fff;
}

.aetec-pvcalc__switchicon.is-active .aetec-pvcalc__infoicon {
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
}

.aetec-pvcalc__switcher-hint {
	margin: 0 0 16px;
	font-size: 13px;
	color: #000;
	opacity: 0.7;
}

/* Resultaten dimmen lichtjes terwijl een nieuwe combinatie wordt
   herberekend na een klik op een switch-icoon, i.p.v. de inhoud helemaal te
   wissen zoals bij de eerste keer binnenkomen op deze stap - voelt zo
   "live" aan in plaats van een volledige herlaad-flits (en de switch-
   iconen zelf blijven zo ook gewoon zichtbaar/klikbaar tijdens het laden). */
.aetec-pvcalc__results.is-loading {
	opacity: 0.5;
	transition: opacity 0.1s ease;
}

.aetec-pvcalc__resultcard {
	border: none;
	border-radius: 8px;
	padding: 16px 18px;
	background: var(--aetec-green);
	color: #fff;
	margin-bottom: 12px;
}

.aetec-pvcalc__resultcard--battery {
	background: var(--aetec-green-dark);
}

.aetec-pvcalc__resultcard-label {
	font-weight: 600;
	margin-bottom: 4px;
	color: #fff;
}

.aetec-pvcalc__resultcard-detail {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 8px;
}

.aetec-pvcalc__resultcard-price {
	font-size: 26px;
	font-weight: 700;
	color: #fff;
}

.aetec-pvcalc__resultcard-pricelabel {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.75);
	margin-top: 2px;
}

/* --- Productafbeeldingen op de resultaatpagina (nieuw v2.1.1) ------------ */

/*
 * Grotere afbeelding onderaan de resultaatkaart (paneel of batterij).
 * max-height groter dan de keuzekaart-variant (110px) omdat er op
 * de resultaatpagina meer ruimte beschikbaar is.
 */
.aetec-pvcalc__resultcard-img {
	display: block;
	max-width: 100%;
	max-height: 160px;
	width: auto;
	height: auto;
	object-fit: contain;
	margin: 14px auto 0;
	border-radius: 4px;
}

/*
 * Container voor twee afbeeldingen naast elkaar (combo-scope: paneel + batterij).
 */
.aetec-pvcalc__resultcard-imgs {
	display: flex;
	gap: 14px;
	justify-content: center;
	align-items: center;
	margin-top: 14px;
}

.aetec-pvcalc__resultcard-imgs .aetec-pvcalc__resultcard-img {
	max-height: 130px;
	max-width: 45%;
	margin: 0;
}

.aetec-pvcalc__needed-capacity {
	font-size: 16px;
	color: #000;
	margin: 0 0 10px;
}

/* Indicatieve opbouw onder de combo-resultaatkaart: bewust klein/onder-
   geschikt, zodat het niet aanvoelt als een tweede, op te tellen prijs. */
.aetec-pvcalc__breakdown {
	font-size: 15px;
	color: #000;
	margin: -4px 0 14px;
}

/* --- "Word baas over eigen energie": besparing/ROI-blok (v1.4) ---------- */

.aetec-pvcalc__savings {
	margin: 4px 0 16px;
	padding: 18px;
	border: 1px solid #d8ecdf;
	border-radius: 10px;
	background: #f3faf5;
}

.aetec-pvcalc__savings-title {
	margin: 0 0 14px;
	font-weight: 800;
	font-size: 19px;
	color: var(--aetec-green);
}

/* Elke metriek (% onafhankelijkheid, besparing, factuur, terugverdientijd)
   krijgt een eigen afgebakend "blok" i.p.v. losse tekst naast elkaar -
   duidelijker en krachtiger leesbaar, en voorkomt dat lange labels zoals
   "Energieonafhankelijkheid" visueel overlappen met de buur-cel. */
.aetec-pvcalc__savings-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 12px;
	margin-bottom: 10px;
}

.aetec-pvcalc__savings-tile {
	background: #fff;
	border: 1px solid #d8ecdf;
	border-radius: 10px;
	padding: 14px 16px;
}

/* De eerste tegel (energieonafhankelijkheid) is de blikvanger: groen blok,
   grootste percentage. */
.aetec-pvcalc__savings-tile--hero {
	background: var(--aetec-green);
	border-color: var(--aetec-green);
}

.aetec-pvcalc__savings-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #000;
	overflow-wrap: break-word;
	word-break: break-word;
}

.aetec-pvcalc__savings-tile--hero .aetec-pvcalc__savings-label {
	color: rgba(255, 255, 255, 0.9);
}

.aetec-pvcalc__savings-value {
	display: block;
	margin-top: 4px;
	font-size: 28px;
	font-weight: 800;
	color: #000;
	line-height: 1.15;
}

.aetec-pvcalc__savings-tile--hero .aetec-pvcalc__savings-value {
	font-size: 38px;
	color: #fff;
}

/* Kleurcodering Energieonafhankelijkheid-tegel (v1.9, feedback eigenaar):
   groen (--hero, hierboven) = hoogste percentage, licht pastelgeel (--mid)
   rond de drempelwaarde, licht pastel-oranje (--low) voor het laagste
   percentage. Welke klasse wordt toegepast, bepaalt
   independence_color_class() in class-aetec-shortcode.php op basis van de
   admin-instelbare drempels (tabblad "Algemeen"). Donkere tekstkleuren i.p.v.
   het witte hero-lettertype, want wit is niet leesbaar op een lichte pastel-
   achtergrond. */
.aetec-pvcalc__savings-tile--mid {
	background: #fdf3d3;
	border-color: #f1d999;
}

.aetec-pvcalc__savings-tile--mid .aetec-pvcalc__savings-label,
.aetec-pvcalc__savings-tile--mid .aetec-pvcalc__savings-value {
	color: #6b5419;
}

.aetec-pvcalc__savings-tile--low {
	background: #fde2cc;
	border-color: #f3b687;
}

.aetec-pvcalc__savings-tile--low .aetec-pvcalc__savings-label,
.aetec-pvcalc__savings-tile--low .aetec-pvcalc__savings-value {
	color: #7a3c12;
}

.aetec-pvcalc__savings-baseline,
.aetec-pvcalc__savings-ems {
	margin: 4px 0;
	font-size: 15px;
	color: #000;
}

.aetec-pvcalc__savings-disclaimer {
	margin: 8px 0 0;
	font-size: 13px;
	color: #000;
}

/* Excl.-BTW-subtekst onder een incl.-BTW-bedrag in de vergelijkingstabel */
.aetec-pvcalc__price-sub {
	display: block;
	font-size: 13px;
	font-weight: 400;
	color: #000;
}

.aetec-pvcalc__altdetails,
.aetec-pvcalc__comparedetails {
	margin-top: 8px;
	margin-bottom: 16px;
	font-size: 15px;
}

.aetec-pvcalc__altdetails summary,
.aetec-pvcalc__comparedetails summary {
	cursor: pointer;
	color: var(--aetec-green);
	font-weight: 600;
}

.aetec-pvcalc__altlist {
	margin: 8px 0 0;
	padding-left: 18px;
	color: #000;
}

.aetec-pvcalc__loading {
	color: #000;
}

/* --- Tabellen (volledige vergelijking) ----------------------------------- */

.aetec-pvcalc__table {
	width: 100%;
	border-collapse: collapse;
	margin: 10px 0 16px;
}

.aetec-pvcalc__table th,
.aetec-pvcalc__table td {
	padding: 10px 12px;
	border-bottom: 1px solid #eee;
	text-align: left;
}

.aetec-pvcalc__table thead th {
	background: #f0f0f0;
	font-weight: 600;
}

.aetec-pvcalc__price {
	font-weight: 600;
	white-space: nowrap;
}

.aetec-pvcalc__price--total {
	color: var(--aetec-green);
}

.aetec-pvcalc__tag {
	display: inline-block;
	font-size: 13px;
	color: #000;
	background: #eee;
	border-radius: 3px;
	padding: 1px 6px;
	margin-left: 6px;
}

.aetec-pvcalc__error {
	color: #b91c1c;
}

.aetec-pvcalc__disclaimer {
	font-size: 14px;
	color: #000;
	margin-top: 16px;
	margin-bottom: 0;
}

/* --- Nieuw in v2.0: leadformulier ("gegevens"-stap) --------------------- */

.aetec-pvcalc__field input[type="text"],
.aetec-pvcalc__field input[type="email"],
.aetec-pvcalc__field input[type="tel"] {
	width: 100%;
	max-width: 360px;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
	font-family: inherit;
}

.aetec-pvcalc__field--checkbox label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-weight: 400;
	font-size: 15px;
}

.aetec-pvcalc__field--checkbox input[type="checkbox"] {
	margin-top: 3px;
	flex-shrink: 0;
}

.aetec-pvcalc__form-error {
	color: #b91c1c;
	font-size: 14px;
	margin: 0 0 10px;
	min-height: 1em;
}

.aetec-pvcalc__btn--secondary {
	background: #fff !important;
	color: var(--aetec-green) !important;
	border: 2px solid var(--aetec-green) !important;
	margin-top: 16px;
	margin-right: 8px;
	padding: 8px 16px;
}

.aetec-pvcalc__btn--secondary:hover {
	background: rgba(18, 157, 57, 0.08) !important;
}

.aetec-pvcalc__resultactions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
}

.aetec-pvcalc__email-status {
	margin: 6px 0 0;
	font-size: 14px;
	color: var(--aetec-green-dark);
	min-height: 1em;
}

.aetec-pvcalc__email-status.is-error {
	color: #b91c1c;
}

/* --- Nieuw in v2.0: EMS-toelichting onder de switcher ------------------- */

.aetec-pvcalc__switcher-hint--ems {
	flex-basis: 100%;
	margin-top: -2px;
}

/* --- Nieuw in v2.0: "net minder/net meer"-widget ------------------------ */

.aetec-pvcalc__variantpicker {
	margin: 0 0 16px;
}

.aetec-pvcalc__variantpicker-label {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 600;
	color: #000;
}

.aetec-pvcalc__variantpicker-tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.aetec-pvcalc__varianttile {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

/* Klikbaar (nieuw): hover/focus-feedback zodat duidelijk is dat de tegels
   ("Net minder"/"Uw keuze"/"Net meer") aanklikbaar zijn om de prijs meteen
   te herberekenen voor die variant. */
.aetec-pvcalc__varianttile:hover,
.aetec-pvcalc__varianttile:focus-visible {
	border-color: var(--aetec-green);
}

.aetec-pvcalc__varianttile.is-current {
	border-color: var(--aetec-green);
	border-width: 2px;
	background: rgba(18, 157, 57, 0.06);
	cursor: default;
}

.aetec-pvcalc__varianttile-name {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--aetec-green);
}

.aetec-pvcalc__varianttile-count {
	font-size: 14px;
	color: #000;
}

.aetec-pvcalc__varianttile-price {
	font-size: 17px;
	font-weight: 700;
	color: #000;
}

.aetec-pvcalc__varianttile-btw {
	font-size: 11px;
	font-weight: 400;
	opacity: 0.65;
}

/* --- Nieuw in v2.0: extra's onderaan het resultaat (garantie/energiescan) */

.aetec-pvcalc__extras {
	margin-top: 14px;
}

.aetec-pvcalc__extras-item {
	margin: 0 0 4px;
	font-size: 14px;
	color: #000;
}

/* --- Nieuw in v2.3: energiescan-blok in stap 5 (prominente upsell) ------- */

.aetec-pvcalc__energiescan-block {
	background: rgba(18, 157, 57, 0.07);
	border: 2px solid var(--aetec-green);
	border-radius: 12px;
	padding: 18px 22px 16px;
	margin: 22px 0 18px;
}

.aetec-pvcalc__energiescan-title {
	color: var(--aetec-green);
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 12px;
	line-height: 1.3;
}

.aetec-pvcalc__energiescan-block .aetec-pvcalc__field--checkbox {
	margin: 0;
}

/* --- Nieuw in v2.3: expert-item in extras-blok (lichtgroene accentkleur) - */

.aetec-pvcalc__extras-item--expert {
	color: var(--aetec-green);
	font-weight: 600;
}
