/* Witgoed-Gids keuzehulp — rustige, schermvullende configurator */

body.wg-choice-standalone .site-header,
body.wg-choice-standalone #site-navigation,
body.wg-choice-standalone .site-footer,
body.wg-choice-standalone .footer-widgets,
body.wg-choice-standalone .site-info {
    display: none !important;
}

body.wg-choice-standalone #page,
body.wg-choice-standalone #content,
body.wg-choice-standalone .content-area,
body.wg-choice-standalone .site-main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wg-choice-appbar {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 64px;
    border-bottom: 1px solid rgba(255,255,255,.18);
    background: #0f5f82;
    color: #fff;
}

.wg-choice-appbar__inner {
    width: min(1180px, calc(100% - 48px));
    min-height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.wg-choice-appbar__brand,
.wg-choice-appbar__exit {
    color: #fff !important;
    text-decoration: none;
}

.wg-choice-appbar__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 850;
}

.wg-choice-appbar__mark {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #0f5f82;
    font-size: 15px;
    font-weight: 900;
}

.wg-choice-appbar__exit {
    font-size: 14px;
    font-weight: 700;
    opacity: .9;
}

.wg-choice-page {
    min-height: calc(100vh - 64px);
    background: #f3f6f9;
    color: #14283b;
}

.wg-choice-page__container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.wg-choice-hero {
    padding: 26px 0 34px;
    background: #fff;
    border-bottom: 1px solid #e0e7ed;
}

.wg-choice-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
    color: #758596;
    font-size: 13px;
}

.wg-choice-breadcrumbs a {
    color: #456b82;
    text-decoration: none;
}

.wg-choice-hero__content {
    max-width: 820px;
}

.wg-choice-hero__label {
    margin: 0 0 7px;
    color: #176f98;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.wg-choice-hero h1 {
    margin: 0;
    color: #12273b;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.1;
    letter-spacing: -.03em;
}

.wg-choice-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 18px;
    color: #314b5d;
    font-size: 13px;
    font-weight: 750;
}

.wg-choice-hero__trust span::before {
    content: "✓";
    margin-right: 6px;
    color: #228251;
    font-weight: 900;
}

.wg-choice-page__body {
    min-height: calc(100vh - 290px);
    padding: 34px 0 54px;
    background: #f3f6f9;
}

.wg-choice {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid #dce5eb;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(24,56,76,.10);
}

.wg-choice__progress {
    height: 7px;
    overflow: hidden;
    background: #e5edf2;
}

.wg-choice__progress span {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: 0 999px 999px 0;
    background: #1c83ad;
    transition: width .32s ease;
}

.wg-choice__form {
    position: relative;
    min-height: 600px;
    padding: 44px 54px 116px;
}

.wg-choice__step {
    position: absolute;
    inset: 44px 54px auto;
    min-height: 420px;
    opacity: 0;
    transform: translateX(34px);
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: none;
}

.wg-choice__step.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.wg-choice__step.is-prepared-left { transform: translateX(-34px); }
.wg-choice__step.is-prepared-right { transform: translateX(34px); }
.wg-choice__step.is-leaving-left { opacity: 0; transform: translateX(-34px); }
.wg-choice__step.is-leaving-right { opacity: 0; transform: translateX(34px); }

.wg-choice__eyebrow {
    margin: 0 0 9px;
    color: #1b789f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.wg-choice__step h2 {
    max-width: 850px;
    margin: 0 0 8px;
    color: #13283b;
    font-size: clamp(30px, 3.4vw, 45px);
    line-height: 1.12;
    letter-spacing: -.025em;
}

.wg-choice__step > p:not(.wg-choice__eyebrow) {
    max-width: 760px;
    margin: 0;
    color: #67798b;
    font-size: 16px;
    line-height: 1.55;
}

.wg-choice__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.wg-choice__options--household {
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
}

.wg-choice__options--features {
    grid-template-columns: repeat(4, minmax(0,1fr));
}

.wg-choice__option {
    position: relative;
    cursor: pointer;
}

.wg-choice__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wg-choice__option > span {
    display: flex;
    align-items: center;
    min-height: 78px;
    padding: 16px 18px;
    border: 1.5px solid #d7e1e8;
    border-radius: 13px;
    background: #fff;
    color: #26384a;
    font-weight: 750;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.wg-choice__option > span::before {
    content: "";
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    margin-right: 12px;
    border: 2px solid #a8b6c2;
    border-radius: 50%;
}

.wg-choice__options--features .wg-choice__option > span::before { border-radius: 5px; }
.wg-choice__option:hover > span { transform: translateY(-1px); border-color: #74a8c1; background: #f9fcfd; }
.wg-choice__option.is-selected > span,
.wg-choice__option input:checked + span {
    border-color: #287ca8;
    background: #eef8fc;
    box-shadow: 0 0 0 3px rgba(40,124,168,.10);
}
.wg-choice__option input:checked + span::before {
    border-color: #287ca8;
    background: #287ca8;
    box-shadow: inset 0 0 0 4px #eef8fc;
}

.wg-choice__option--visual > span {
    min-height: 210px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 22px 16px;
}

.wg-choice__option--visual > span::before { display: none; }

.wg-choice__visual-icon {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #f0f5f8;
    color: #1d77a0;
}

.wg-choice__visual-icon svg {
    width: 53px;
    height: 53px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wg-choice__option-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.wg-choice__option-copy strong {
    color: #20364a;
    font-size: 16px;
    line-height: 1.25;
}

.wg-choice__option-copy small {
    color: #66798b;
    font-size: 13px;
    font-weight: 550;
    line-height: 1.42;
}

.wg-choice__option--visual .wg-choice__option-copy strong { font-size: 18px; }
.wg-choice__option--visual .wg-choice__option-copy small { font-size: 14px; }

.wg-choice__info {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 18px;
    max-width: 900px;
    margin-top: 22px;
    padding: 16px 18px;
    border: 1px solid #d4e3eb;
    border-radius: 12px;
    background: #f4f9fb;
    color: #536c7e;
    font-size: 14px;
    line-height: 1.55;
}

.wg-choice__info strong { color: #1c435b; }

.wg-choice__budget {
    width: 100%;
    margin-top: 30px;
    padding: 30px 34px 27px;
    border: 1px solid #d4e1e9;
    border-radius: 16px;
    background: #f9fbfc;
}

.wg-choice__budget-value {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.wg-choice__budget-value span { color: #617386; font-weight: 750; }
.wg-choice__budget-value strong { color: #174f70; font-size: clamp(34px,4vw,48px); line-height: 1; }

.wg-choice__range {
    --range-progress: 33.33%;
    width: 100%;
    height: 9px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 999px;
    outline: none;
    background: linear-gradient(to right,#287ca8 0 var(--range-progress),#dce6eb var(--range-progress) 100%);
}

.wg-choice__range::-webkit-slider-thumb {
    width: 26px;
    height: 26px;
    appearance: none;
    -webkit-appearance: none;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #287ca8;
    box-shadow: 0 3px 11px rgba(27,75,101,.28);
    cursor: grab;
}

.wg-choice__range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #287ca8;
    box-shadow: 0 3px 11px rgba(27,75,101,.28);
    cursor: grab;
}

.wg-choice__range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    color: #718294;
    font-size: 13px;
    font-weight: 750;
}

.wg-choice__actions {
    position: absolute;
    z-index: 5;
    right: 54px;
    bottom: 28px;
    left: 54px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid #e4ebf0;
    background: #fff;
}

.wg-choice__actions button,
.wg-choice-restart,
.wg-choice-empty button {
    min-height: 49px;
    padding: 13px 25px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 850;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.wg-choice__actions button:hover:not(:disabled) { transform: translateY(-1px); }
.wg-choice__back { color: #405366; background: #edf1f4; }
.wg-choice__back:disabled { opacity: .45; cursor: not-allowed; }
.wg-choice__next,
.wg-choice__submit {
    min-width: 180px;
    margin-left: auto;
    color: #fff;
    background: #176f98;
    box-shadow: 0 7px 18px rgba(23,111,152,.19);
}

.wg-choice__error {
    position: absolute;
    right: 54px;
    bottom: 91px;
    left: 54px;
    z-index: 6;
    margin: 0;
    padding: 11px 14px;
    border: 1px solid #efc6bf;
    border-radius: 8px;
    color: #8a2d22;
    background: #fff2f0;
}

.wg-choice__loading { padding: 100px 20px; text-align: center; }
.wg-choice__loading span { display:block; width:44px; height:44px; margin:0 auto 18px; border:4px solid #d8e7ee; border-top-color:#287ca8; border-radius:50%; animation:wgSpin .8s linear infinite; }

.wg-choice__results { padding: 48px 38px 42px; }
.wg-choice-results-head { margin-bottom: 34px; text-align: center; }
.wg-choice-results-head p { margin: 0 0 6px; color: #1b789f; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.wg-choice-results-head h2 { margin: 0 0 8px; font-size: clamp(30px,4vw,44px); }
.wg-choice-results-head span { color: #68798a; }

.wg-choice-results-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    align-items: center;
    gap: 18px;
}

.wg-choice-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dce5eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(26,58,78,.07);
}

.wg-choice-card--center {
    grid-column: 2;
    grid-row: 1;
    transform: translateY(-10px);
    border: 2px solid #287ca8;
    box-shadow: 0 18px 38px rgba(28,89,122,.14);
}
.wg-choice-card--left { grid-column: 1; grid-row: 1; }
.wg-choice-card--right { grid-column: 3; grid-row: 1; }

.wg-choice-card__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 11px 14px;
    border-bottom: 1px solid #e0e8ed;
    background: #f5f8fa;
}

.wg-choice-card--winner .wg-choice-card__top { background: #eaf6fb; }
.wg-choice-card__rank { display:grid; place-items:center; width:26px; height:26px; border-radius:50%; color:#fff; background:#6f8796; font-size:12px; font-weight:900; }
.wg-choice-card--winner .wg-choice-card__rank { background:#287ca8; }
.wg-choice-card__label { min-width:0; color:#174f70; font-size:13px; font-weight:900; }
.wg-choice-card__match { padding:5px 8px; border:1px solid #cfe0e9; border-radius:999px; background:#fff; color:#174f70; font-size:12px; font-weight:900; }

.wg-choice-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 205px;
    padding: 18px;
}
.wg-choice-card--winner .wg-choice-card__image { height: 230px; }
.wg-choice-card__image img { width:100%; height:100%; object-fit:contain; }

.wg-choice-card__content { padding: 0 20px 18px; }
.wg-choice-card__brand { margin:0 0 4px; color:#6f8090; font-size:11px; font-weight:850; letter-spacing:.06em; text-transform:uppercase; }
.wg-choice-card h2 { margin:0 0 12px; font-size:20px; line-height:1.25; }
.wg-choice-card h2 a { color:#14283b; text-decoration:none; }
.wg-choice-card__specs { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:15px; }
.wg-choice-card__specs span { padding:5px 8px; border-radius:6px; background:#f1f5f7; font-size:12px; font-weight:750; }
.wg-choice-card ul { margin:0; padding:0; list-style:none; }
.wg-choice-card li { position:relative; margin:7px 0; padding-left:20px; color:#405365; font-size:13px; line-height:1.45; }
.wg-choice-card li::before { content:"✓"; position:absolute; left:0; color:#228251; font-weight:900; }
.wg-choice-card__attention { margin:13px 0 0; padding:10px 11px; border-radius:8px; background:#fff8e8; color:#5d5140; font-size:12px; line-height:1.4; }

.wg-choice-card__offer {
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:5px 12px;
    padding:17px 20px 20px;
    border-top:1px solid #e2e8ec;
}
.wg-choice-card__offer > span { color:#6d7c8b; font-size:12px; }
.wg-choice-card__offer > strong { color:#14283b; font-size:24px; }
.wg-choice-card__offer > a { grid-column:1/-1; display:block; margin-top:7px; padding:13px 10px; border-radius:9px; color:#fff!important; background:#ec6b20; text-align:center; text-decoration:none; font-weight:900; }
.wg-choice-restart { display:block; margin:30px auto 0; color:#29485c; background:#eaf0f4; }
.wg-choice-empty { padding:78px 20px; text-align:center; }
.wg-choice-empty h2 { font-size:32px; }
.wg-choice-empty button { color:#fff; background:#176f98; }

.screen-reader-text { position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
@keyframes wgSpin { to { transform: rotate(360deg); } }

@media (max-width: 1050px) {
    .wg-choice__options--household,
    .wg-choice__options--features { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .wg-choice__form { min-height: 690px; }
    .wg-choice-results-grid { grid-template-columns:1fr; max-width:720px; margin:0 auto; }
    .wg-choice-card--center,.wg-choice-card--left,.wg-choice-card--right { grid-column:1; grid-row:auto; transform:none; }
    .wg-choice-card--center { order:-1; }
}

@media (max-width: 700px) {
    .wg-choice-appbar__inner,
    .wg-choice-page__container { width: calc(100% - 24px); }
    .wg-choice-hero { padding:20px 0 27px; }
    .wg-choice-breadcrumbs { margin-bottom:16px; }
    .wg-choice-hero h1 { font-size:24px; }
    .wg-choice-hero__trust { display:grid; gap:7px; }
    .wg-choice-page__body { padding:20px 0 30px; }
    .wg-choice { border-radius:15px; }
    .wg-choice__form { min-height:760px; padding:30px 18px 104px; }
    .wg-choice__step { inset:30px 18px auto; min-height:590px; }
    .wg-choice__step h2 { font-size:30px; }
    .wg-choice__options,
    .wg-choice__options--household,
    .wg-choice__options--features { grid-template-columns:1fr; gap:10px; }
    .wg-choice__option--visual > span { min-height:115px; flex-direction:row; justify-content:flex-start; text-align:left; }
    .wg-choice__visual-icon { width:62px; height:62px; margin:0 14px 0 0; }
    .wg-choice__visual-icon svg { width:39px; height:39px; }
    .wg-choice__option > span { min-height:68px; padding:14px 15px; }
    .wg-choice__info { grid-template-columns:1fr; gap:7px; padding:14px; }
    .wg-choice__budget { padding:24px 17px 22px; }
    .wg-choice__budget-value { align-items:start; flex-direction:column; gap:10px; }
    .wg-choice__actions { right:18px; bottom:22px; left:18px; }
    .wg-choice__next,.wg-choice__submit { min-width:145px; }
    .wg-choice__error { right:18px; bottom:86px; left:18px; }
    .wg-choice__results { padding:30px 12px; }
    .wg-choice-card__image { height:190px; }
    .wg-choice-card--winner .wg-choice-card__image { height:205px; }
}

/* Standalone template: voorkom dat GeneratePress-layout de appbalk of pagina beïnvloedt. */
body.wg-choice-standalone {
    margin: 0 !important;
    min-width: 320px;
    background: #f3f6f9;
}
body.wg-choice-standalone .wg-choice-appbar,
body.wg-choice-standalone .wg-choice-page {
    width: 100%;
    max-width: none;
}
body.admin-bar.wg-choice-standalone .wg-choice-appbar {
    top: 32px;
}
@media (max-width: 782px) {
    body.admin-bar.wg-choice-standalone .wg-choice-appbar { top: 46px; }
}

/* Premium configurator verfijningen */
.wg-choice-page__container,
.wg-choice-appbar__inner {
    width: min(1180px, calc(100% - 48px));
}

.wg-choice-hero {
    padding: 26px 0 30px;
}

.wg-choice-hero__content {
    max-width: 720px;
}

.wg-choice-hero__label {
    margin-bottom: 7px;
}

.wg-choice-hero h1 {
    margin-bottom: 0;
    font-size: clamp(28px, 3vw, 38px);
}

.wg-choice-page__body {
    padding-top: 28px;
}

.wg-choice {
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(27, 61, 82, .11);
}

.wg-choice__form {
    min-height: 620px;
    padding-right: 64px;
    padding-left: 64px;
}

.wg-choice__step {
    right: 64px;
    left: 64px;
}

.wg-choice__step > p:not(.wg-choice__eyebrow) {
    max-width: 610px;
    margin-bottom: 28px;
}

.wg-choice__options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.wg-choice__options--household {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wg-choice__option > span {
    min-height: 118px;
    padding: 22px;
    border-radius: 15px;
    box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}

.wg-choice__option--visual > span {
    min-height: 190px;
}

.wg-choice__option > span:hover {
    transform: translateY(-2px);
    border-color: #a8c8d8;
    box-shadow: 0 12px 28px rgba(29, 78, 104, .09);
}

.wg-choice__option.is-selected > span {
    border-color: #287ca8;
    background: #f2f9fc;
    box-shadow: 0 0 0 3px rgba(40,124,168,.10), 0 14px 30px rgba(29, 78, 104, .10);
}

.wg-choice__energy-scale {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    max-width: 650px;
    margin: 0 0 24px;
}

.wg-choice__energy-scale span {
    display: grid;
    place-items: center;
    min-height: 48px;
    padding: 8px;
    border: 1px solid #d8e4ea;
    border-radius: 10px;
    color: #245d79;
    background: linear-gradient(180deg, #fff, #f4f8fa);
    font-size: 14px;
    font-weight: 900;
}

.wg-choice__actions,
.wg-choice__error {
    right: 64px;
    left: 64px;
}

.wg-choice__results {
    padding: 58px 34px 48px;
}

.wg-choice-results-grid {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.12fr) minmax(0, .94fr);
    gap: 22px;
}

.wg-choice-card {
    border-radius: 20px;
    transition: transform .25s ease, box-shadow .25s ease;
    animation: wgChoiceCardIn .5s both;
}

.wg-choice-card--left { animation-delay: .08s; }
.wg-choice-card--center { animation-delay: .16s; }
.wg-choice-card--right { animation-delay: .24s; }

.wg-choice-card--center {
    transform: translateY(-18px) scale(1.025);
    border-color: #287ca8;
    box-shadow: 0 26px 56px rgba(28, 89, 122, .17);
}

.wg-choice-card__match {
    display: grid;
    min-width: 58px;
    padding: 6px 9px;
    text-align: center;
    line-height: 1.05;
}

.wg-choice-card__match strong {
    font-size: 14px;
}

.wg-choice-card__match small {
    margin-top: 3px;
    color: #6b8190;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.wg-choice-card__why {
    margin: 17px 0 8px;
    color: #173a4d;
    font-size: 13px;
    font-weight: 900;
}

.wg-choice-card__offer > a {
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.wg-choice-card__offer > a:hover {
    transform: translateY(-1px);
    background: #dc5d16;
    box-shadow: 0 9px 20px rgba(236,107,32,.22);
}

@keyframes wgChoiceCardIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 1050px) and (min-width: 701px) {
    .wg-choice__options,
    .wg-choice__options--household {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wg-choice__option > span {
        padding: 18px;
    }

    .wg-choice__option--visual > span {
        min-height: 172px;
    }
}

@media (max-width: 700px) {
    .wg-choice-page__container,
    .wg-choice-appbar__inner {
        width: calc(100% - 24px);
    }

    .wg-choice-hero {
        padding: 18px 0 22px;
    }

    .wg-choice-hero h1 {
        font-size: 24px;
        line-height: 1.12;
    }

    .wg-choice__form {
        padding-right: 18px;
        padding-left: 18px;
    }

    .wg-choice__step {
        right: 18px;
        left: 18px;
    }

    .wg-choice__energy-scale {
        grid-template-columns: repeat(5, minmax(58px, 1fr));
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .wg-choice__actions,
    .wg-choice__error {
        right: 18px;
        left: 18px;
    }
}

/* Keuzevelden per vraagtype: compact op desktop en bewust gestapeld op mobiel. */
.wg-choice__options--features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.wg-choice__options--features .wg-choice__option > span {
    min-height: 64px;
    padding: 12px 16px;
}

@media (max-width: 700px) {
    /* Vragen 1, 3 en 4: elke antwoordmogelijkheid over de volle breedte. */
    .wg-choice__options,
    .wg-choice__options--household {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    /* Vraag 5: als enige twee compacte keuzes naast elkaar. */
    .wg-choice__options--features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .wg-choice__options--features .wg-choice__option > span {
        min-height: 62px;
        padding: 11px 10px;
        font-size: 13px;
        line-height: 1.25;
    }

    .wg-choice__options--features .wg-choice__option > span::before {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
}

/* Compacte mobiele antwoordkaarten en toegankelijke geluids-tooltip. */
.wg-choice__heading-with-help {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 900px;
}

.wg-choice__heading-with-help h2 {
    margin-bottom: 8px;
}

.wg-choice__tooltip {
    position: relative;
    flex: 0 0 auto;
    margin-top: 7px;
}

.wg-choice__tooltip-trigger {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    padding: 0;
    border: 1px solid #9eb8c7;
    border-radius: 50%;
    color: #1b6f96;
    background: #f4f9fb;
    font: 800 14px/1 Georgia, serif;
    cursor: help;
}

.wg-choice__tooltip-trigger:hover,
.wg-choice__tooltip-trigger:focus-visible {
    border-color: #287ca8;
    background: #eaf6fb;
    outline: none;
}

.wg-choice__tooltip-content {
    position: absolute;
    z-index: 20;
    top: calc(100% + 9px);
    right: 0;
    width: min(330px, calc(100vw - 48px));
    padding: 12px 14px;
    border: 1px solid #cbdde6;
    border-radius: 10px;
    color: #405a6c;
    background: #fff;
    box-shadow: 0 12px 30px rgba(25, 65, 88, .16);
    font-size: 13px;
    font-weight: 550;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-3px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    pointer-events: none;
}

.wg-choice__tooltip:hover .wg-choice__tooltip-content,
.wg-choice__tooltip:focus-within .wg-choice__tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 700px) {
    .wg-choice__form {
        min-height: 650px;
        padding-top: 24px;
    }

    .wg-choice__step {
        top: 24px;
        min-height: 500px;
    }

    .wg-choice__step h2 {
        font-size: 27px;
        line-height: 1.14;
    }

    .wg-choice__step > p:not(.wg-choice__eyebrow) {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.45;
    }

    .wg-choice__options,
    .wg-choice__options--household {
        margin-top: 18px;
        gap: 8px;
    }

    /* Vragen 1, 3 en 4: alle drie keuzes compact en tegelijk zichtbaar. */
    .wg-choice__options:not(.wg-choice__options--features) .wg-choice__option > span {
        min-height: 70px;
        padding: 10px 12px;
        border-radius: 11px;
    }

    .wg-choice__option--visual > span {
        min-height: 82px !important;
        padding: 9px 12px !important;
    }

    .wg-choice__visual-icon {
        width: 48px;
        height: 48px;
        margin-right: 11px;
    }

    .wg-choice__visual-icon svg {
        width: 31px;
        height: 31px;
    }

    .wg-choice__option-copy {
        gap: 3px;
    }

    .wg-choice__option-copy strong,
    .wg-choice__option--visual .wg-choice__option-copy strong {
        font-size: 14px;
    }

    .wg-choice__option-copy small,
    .wg-choice__option--visual .wg-choice__option-copy small {
        font-size: 12px;
        line-height: 1.3;
    }

    .wg-choice__option > span::before {
        width: 18px;
        height: 18px;
        margin-right: 9px;
    }

    .wg-choice__heading-with-help {
        gap: 7px;
    }

    .wg-choice__heading-with-help h2 {
        flex: 1 1 auto;
    }

    .wg-choice__tooltip {
        margin-top: 4px;
    }

    .wg-choice__tooltip-content {
        right: -4px;
        width: min(290px, calc(100vw - 42px));
    }
}


/* Mobiele stapnavigatie: alleen sticky wanneer er voldoende schermhoogte is. */
@media (max-width: 700px) and (min-height: 680px) and (orientation: portrait) {
    .wg-choice:not(.wg-choice--compact-viewport) .wg-choice__form:not([hidden]) {
        padding-bottom: calc(96px + env(safe-area-inset-bottom));
    }

    .wg-choice:not(.wg-choice--compact-viewport) .wg-choice__actions {
        position: fixed;
        z-index: 100;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        gap: 10px;
        margin: 0;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        border-top: 1px solid #dfe7ec;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 -5px 18px rgba(22, 55, 73, .07);
        backdrop-filter: blur(8px);
    }

    .wg-choice:not(.wg-choice--compact-viewport) .wg-choice__actions button {
        min-height: 44px;
        padding: 10px 18px;
    }

    .wg-choice:not(.wg-choice--compact-viewport) .wg-choice__next,
    .wg-choice:not(.wg-choice--compact-viewport) .wg-choice__submit {
        min-width: 0;
        flex: 1 1 auto;
    }

    .wg-choice:not(.wg-choice--compact-viewport) .wg-choice__back {
        flex: 0 1 42%;
    }

    .wg-choice:not(.wg-choice--compact-viewport) .wg-choice__error:not([hidden]) {
        position: fixed;
        z-index: 101;
        right: 12px;
        bottom: calc(72px + env(safe-area-inset-bottom));
        left: 12px;
        margin: 0;
    }
}

/* Mobiel: compacte hero zodat de eerste vraag hoger in beeld staat. */
@media (max-width: 700px) {
    .wg-choice-hero {
        padding-bottom: 16px;
    }

    .wg-choice-page__body {
        padding-top: 14px;
    }
}


/* Responsive resultaten en compacte keuzehulp-hero. */
.wg-choice-hero h1 {
    font-size: 38px;
    line-height: 1.1;
}

@media (max-width: 1050px) {
    .wg-choice-results-grid {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 700px) {
    .wg-choice-hero__content {
        max-width: none;
    }

    .wg-choice-hero h1 {
        margin-right: -4px;
        font-size: clamp(18px, 5.5vw, 22px);
        line-height: 1.18;
        letter-spacing: -.025em;
        white-space: nowrap;
    }

    .wg-choice__results {
        padding: 32px 0 36px;
    }

    .wg-choice-results-head {
        margin-bottom: 24px;
        padding: 0 16px;
    }

    .wg-choice-results-head h2 {
        font-size: clamp(27px, 8vw, 34px);
        line-height: 1.12;
    }

    .wg-choice-results-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 16px;
    }

    .wg-choice-card,
    .wg-choice-card--left,
    .wg-choice-card--center,
    .wg-choice-card--right {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        min-width: 0;
        max-width: none;
        margin: 0;
        transform: none;
        border-radius: 18px;
    }

    .wg-choice-card--center {
        order: -1;
        border-width: 2px;
        box-shadow: 0 18px 40px rgba(28, 89, 122, .14);
    }

    .wg-choice-card__top {
        grid-template-columns: 30px minmax(0, 1fr) auto;
        min-height: 58px;
        padding: 12px 14px;
    }

    .wg-choice-card__rank {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .wg-choice-card__label {
        font-size: 13px;
        line-height: 1.25;
    }

    .wg-choice-card__match {
        min-width: 62px;
        padding: 6px 8px;
    }

    .wg-choice-card__image,
    .wg-choice-card--winner .wg-choice-card__image {
        height: 230px;
        padding: 20px 22px 14px;
    }

    .wg-choice-card__content {
        padding: 2px 18px 18px;
    }

    .wg-choice-card h2 {
        margin-bottom: 13px;
        font-size: 21px;
        line-height: 1.25;
    }

    .wg-choice-card__specs {
        gap: 7px;
        margin-bottom: 16px;
    }

    .wg-choice-card__specs span {
        padding: 6px 9px;
        font-size: 12px;
    }

    .wg-choice-card li {
        margin: 8px 0;
        font-size: 14px;
        line-height: 1.5;
    }

    .wg-choice-card__offer {
        padding: 17px 18px 19px;
    }

    .wg-choice-card__offer > strong {
        font-size: 25px;
    }

    .wg-choice-card__offer > a {
        min-height: 50px;
        display: grid;
        place-items: center;
        padding: 13px 15px;
        font-size: 15px;
    }

    .wg-choice-restart {
        width: calc(100% - 32px);
        margin-top: 24px;
    }
}

@media (max-width: 360px) {
    .wg-choice-hero h1 {
        font-size: 18px;
        letter-spacing: -.03em;
    }

    .wg-choice-card__image,
    .wg-choice-card--winner .wg-choice-card__image {
        height: 210px;
    }
}

/* Contextuele merkkleur. Zonder merk blijft de vaste Witgoed-Gids-kleur actief. */
.wg-choice-standalone {
    --wg-choice-accent: #0b5ea8;
    --wg-choice-accent-soft: #eef6fa;
    --wg-choice-success: #248552;
    --wg-choice-success-hover: #1f7247;
}
.wg-choice__progress span,
.wg-choice__next,
.wg-choice__submit,
.wg-choice-restart,
.wg-choice-empty button,
.wg-choice-card--winner .wg-choice-card__rank,
.wg-choice-card__offer > a {
    background: var(--wg-choice-accent);
}
.wg-choice-hero__label,
.wg-choice__eyebrow,
.wg-choice-results-head p,
.wg-choice-card__label,
.wg-choice-card__match,
.wg-choice__budget-value strong {
    color: var(--wg-choice-accent);
}
.wg-choice__option:hover > span,
.wg-choice__option.is-selected > span,
.wg-choice__option input:checked + span,
.wg-choice__range:focus-visible {
    border-color: var(--wg-choice-accent);
}
.wg-choice__option.is-selected > span,
.wg-choice__option input:checked + span,
.wg-choice-card--winner .wg-choice-card__top {
    background: var(--wg-choice-accent-soft);
}
.wg-choice__option input:checked + span::before {
    border-color: var(--wg-choice-accent);
    background: var(--wg-choice-accent);
}
.wg-choice__range {
    background: linear-gradient(to right, var(--wg-choice-accent) 0 var(--range-progress), #d7e0e6 var(--range-progress) 100%);
}
.wg-choice__range::-webkit-slider-thumb,
.wg-choice__range::-moz-range-thumb {
    border-color: var(--wg-choice-accent);
}
.wg-choice__loading span {
    border-top-color: var(--wg-choice-accent);
}

/* ==========================================================
   Contextuele merkuitstraling en duidelijke resultaat-CTA's
   ========================================================== */
/* De bovenbalk volgt automatisch de ingestelde merkkleur. */
.wg-choice-appbar {
    background: var(--wg-choice-accent);
}

.wg-choice-appbar__mark {
    color: var(--wg-choice-accent);
}

/* De beste match gebruikt dezelfde merkkleur als de keuzehulp. */
.wg-choice-card--center {
    border-color: var(--wg-choice-accent);
}

/* Aanbiedingen zijn een afzonderlijke, positieve vervolgactie. */
.wg-choice-card__offer > a {
    color: #fff !important;
    background: var(--wg-choice-success);
}

.wg-choice-card__offer > a:hover,
.wg-choice-card__offer > a:focus-visible {
    color: #fff !important;
    background: var(--wg-choice-success-hover);
    box-shadow: 0 9px 20px rgba(36, 133, 82, .22);
}

/* Voldoende contrast op de knop onder de resultaten. */
.wg-choice-restart,
.wg-choice-restart:hover,
.wg-choice-restart:focus-visible {
    color: #fff;
}

/* ==========================================================
   Keuzehulp-iconen — uitsluitend binnen de keuzehulpen
   ========================================================== */
.wg-choice .wg-choice__icon-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wg-choice .wg-choice__visual-icon {
    color: var(--wg-choice-accent);
    background: var(--wg-choice-accent-soft);
}

/* De huishoudeniconen blijven luchtige lijniconen binnen de ruime cirkel. */
.wg-choice .wg-choice__visual-icon .wg-choice__icon-svg {
    width: 52px;
    height: 52px;
    stroke-width: 1.65;
}

.wg-choice .wg-choice__option--icon > span {
    align-items: center;
}

.wg-choice .wg-choice__option-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    margin-right: 14px;
    border-radius: 12px;
    color: var(--wg-choice-accent);
    background: var(--wg-choice-accent-soft);
}

.wg-choice .wg-choice__option-icon .wg-choice__icon-svg {
    width: 28px;
    height: 28px;
}

.wg-choice .wg-choice__budget-label {
    display: flex;
    align-items: center;
    gap: 11px;
}

.wg-choice .wg-choice__budget-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 12px;
    color: var(--wg-choice-accent);
    background: var(--wg-choice-accent-soft);
}

.wg-choice .wg-choice__budget-icon .wg-choice__icon-svg {
    width: 27px;
    height: 27px;
}

.wg-choice .wg-choice__options--features .wg-choice__option--feature > span {
    align-items: center;
}

.wg-choice .wg-choice__options--features .wg-choice__option-icon--feature {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    margin-right: 10px;
    border-radius: 10px;
}

.wg-choice .wg-choice__options--features .wg-choice__option-icon--feature .wg-choice__icon-svg {
    width: 23px;
    height: 23px;
}

.wg-choice .wg-choice__feature-label {
    min-width: 0;
    color: #26384a;
    font-weight: 780;
    line-height: 1.3;
}

.wg-choice .wg-choice__option:hover .wg-choice__option-icon,
.wg-choice .wg-choice__option.is-selected .wg-choice__option-icon,
.wg-choice .wg-choice__option input:checked + span .wg-choice__option-icon {
    color: var(--wg-choice-accent);
    background: #fff;
}

.wg-choice .wg-choice__option input:focus-visible + span {
    outline: 2px solid var(--wg-choice-accent);
    outline-offset: 3px;
}

@media (max-width: 700px) {
    .wg-choice .wg-choice__option-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        margin-right: 11px;
        border-radius: 10px;
    }

    .wg-choice .wg-choice__option-icon .wg-choice__icon-svg {
        width: 24px;
        height: 24px;
    }

    .wg-choice .wg-choice__budget-label {
        gap: 9px;
    }

    .wg-choice .wg-choice__budget-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .wg-choice .wg-choice__budget-icon .wg-choice__icon-svg {
        width: 24px;
        height: 24px;
    }

    .wg-choice .wg-choice__options--features .wg-choice__option--feature > span {
        min-height: 68px;
        padding: 10px 9px;
    }

    .wg-choice .wg-choice__options--features .wg-choice__option-icon--feature {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        margin-right: 8px;
    }

    .wg-choice .wg-choice__options--features .wg-choice__option-icon--feature .wg-choice__icon-svg {
        width: 20px;
        height: 20px;
    }

    .wg-choice .wg-choice__feature-label {
        font-size: 12.5px;
    }

    .wg-choice .wg-choice__visual-icon .wg-choice__icon-svg {
        width: 31px;
        height: 31px;
        stroke-width: 1.75;
    }
}

/* ==========================================================
   Keuzehulpresultaten — rangorde en compacte productkop
   ========================================================== */
.wg-choice-results-grid {
    align-items: stretch;
}

.wg-choice-card {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.wg-choice-card__product {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    min-width: 0;
    padding: 16px 16px 12px;
}

.wg-choice-card__image,
.wg-choice-card--winner .wg-choice-card__image {
    width: 100%;
    height: 136px;
    min-height: 0;
    padding: 6px 10px 6px 0;
}

.wg-choice-card__summary {
    min-width: 0;
    padding-left: 3px;
}

.wg-choice-card__brand {
    margin-bottom: 5px;
}

.wg-choice-card h2 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.22;
    overflow-wrap: anywhere;
}

.wg-choice-card__specs {
    margin-bottom: 0;
}

.wg-choice-card__content {
    flex: 1 1 auto;
    padding: 0 18px 17px;
}

.wg-choice-card__why {
    margin-top: 4px;
}

.wg-choice-card__offer {
    margin-top: auto;
}

@media (max-width: 1050px) {
    .wg-choice-card__product {
        grid-template-columns: 120px minmax(0, 1fr);
        padding: 17px 18px 12px;
    }

    .wg-choice-card__image,
    .wg-choice-card--winner .wg-choice-card__image {
        height: 142px;
    }
}

@media (max-width: 700px) {
    .wg-choice-card__product {
        grid-template-columns: 112px minmax(0, 1fr);
        padding: 15px 16px 10px;
    }

    .wg-choice-card__image,
    .wg-choice-card--winner .wg-choice-card__image {
        height: 132px;
        padding: 4px 10px 4px 0;
    }

    .wg-choice-card__summary {
        padding-left: 2px;
    }

    .wg-choice-card h2 {
        margin-bottom: 9px;
        font-size: 18px;
        line-height: 1.23;
    }

    .wg-choice-card__specs {
        gap: 5px;
    }

    .wg-choice-card__specs span {
        padding: 5px 7px;
        font-size: 11.5px;
    }

    .wg-choice-card__content {
        padding: 0 16px 16px;
    }
}

@media (max-width: 380px) {
    .wg-choice-card__product {
        grid-template-columns: 92px minmax(0, 1fr);
        padding-right: 13px;
        padding-left: 13px;
    }

    .wg-choice-card__image,
    .wg-choice-card--winner .wg-choice-card__image {
        height: 116px;
        padding-right: 8px;
    }

    .wg-choice-card h2 {
        font-size: 16.5px;
    }
}

/* ==========================================================
   Keuzehulpresultaten — conversie, uitleg en meetbare acties
   ========================================================== */
.wg-choice-results-head__adjust {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 13px auto 0;
    padding: 4px 2px;
    border: 0;
    border-radius: 0;
    color: var(--wg-choice-accent, #0b5ea8);
    background: transparent;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.wg-choice-results-head__adjust:hover,
.wg-choice-results-head__adjust:focus-visible {
    color: #123f5b;
    background: transparent;
}

.wg-choice-card__match {
    position: relative;
    cursor: help;
    outline: none;
}

.wg-choice-card__match:focus-visible {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--wg-choice-accent, #0b5ea8) 22%, transparent);
}

.wg-choice-card__match-help {
    position: absolute;
    z-index: 20;
    top: calc(100% + 9px);
    right: 0;
    width: min(230px, 72vw);
    padding: 9px 10px;
    border: 1px solid #cfdae2;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(20, 40, 59, .15);
    color: #31475a;
    background: #fff;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    text-transform: none;
    letter-spacing: normal;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-3px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.wg-choice-card__match:hover .wg-choice-card__match-help,
.wg-choice-card__match:focus .wg-choice-card__match-help,
.wg-choice-card__match:focus-within .wg-choice-card__match-help {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wg-choice-card__offer > a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13.5px;
    line-height: 1.3;
    text-wrap: balance;
}

.wg-choice-card__why {
    line-height: 1.35;
}

@media (max-width: 700px) {
    .wg-choice-results-head__adjust {
        margin-top: 11px;
        min-height: 38px;
        font-size: 13px;
    }

    .wg-choice-card__match-help {
        position: fixed;
        top: auto;
        right: 14px;
        bottom: 18px;
        left: 14px;
        width: auto;
        max-width: 440px;
        margin-right: auto;
        margin-left: auto;
        font-size: 12px;
    }

    .wg-choice-card__offer > a {
        min-height: 50px;
        font-size: 13px;
    }
}



/* =========================================================
   Wasdrogergids keuzehulp v3 — premium conversie-interface
   ========================================================= */
body.wdg-choice-v3 {
    --wdg-choice-ink: #10231d;
    --wdg-choice-text: #29423a;
    --wdg-choice-muted: #687c74;
    --wdg-choice-brand: var(--wg-choice-accent, #0d7457);
    --wdg-choice-brand-dark: #075640;
    --wdg-choice-soft: #edf7f2;
    --wdg-choice-soft-warm: #f8f4ec;
    --wdg-choice-line: #dbe8e2;
    --wdg-choice-shadow: 0 22px 58px rgba(16, 49, 39, .10);
    overflow-x: hidden;
    background: #f4f8f6;
}

.wdg-choice-v3 .wg-choice-appbar {
    min-height: 72px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(16,35,29,.98);
    box-shadow: 0 8px 30px rgba(8,29,22,.12);
    backdrop-filter: blur(12px);
}

.wdg-choice-v3 .wg-choice-appbar__inner {
    width: min(1180px, calc(100% - 48px));
    min-height: 72px;
}

.wdg-choice-v3 .wg-choice-appbar__brand {
    gap: 12px;
    font-size: 19px;
    letter-spacing: -.02em;
}

.wdg-choice-v3 .wg-choice-appbar__mark {
    width: 36px;
    height: 36px;
    background: #fff;
    color: var(--wdg-choice-brand-dark);
    box-shadow: 0 0 0 5px rgba(255,255,255,.08);
}

.wdg-choice-v3 .wdg-choice-security {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #c6ddd4;
    font-size: 13px;
}

.wdg-choice-v3 .wdg-choice-security span {
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: rgba(123,219,181,.14);
    color: #8be0bf;
}

.wdg-choice-v3 .wg-choice-appbar__exit {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    font-size: 13px;
}

.wdg-choice-v3 .wg-choice-page {
    background:
        radial-gradient(circle at 12% 0%, rgba(205,235,221,.72), transparent 25%),
        linear-gradient(180deg, #f9fbfa 0%, #f2f7f4 100%);
    color: var(--wdg-choice-ink);
}

.wdg-choice-v3 .wg-choice-page__container {
    width: min(1180px, calc(100% - 48px));
}

.wdg-choice-v3 .wg-choice-hero.wdg-choice-intro {
    position: relative;
    overflow: hidden;
    padding: 74px 0 64px;
    border-bottom: 1px solid var(--wdg-choice-line);
    background:
        radial-gradient(circle at 88% 20%, rgba(218,232,176,.52), transparent 23%),
        linear-gradient(135deg, #f5faf7 0%, #edf6f1 58%, #faf7ef 100%);
}

.wdg-choice-v3 .wg-choice-hero.wdg-choice-intro::after {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    right: -190px;
    top: -210px;
    border: 1px solid rgba(13,116,87,.14);
    border-radius: 50%;
    pointer-events: none;
}

.wdg-choice-v3 .wdg-choice-intro__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: 64px;
    align-items: center;
}

.wdg-choice-v3 .wdg-choice-intro__grid > *,
.wdg-choice-v3 .wg-choice-hero__content,
.wdg-choice-v3 .wdg-choice-explainer {
    min-width: 0;
    max-width: 100%;
}

.wdg-choice-v3 .wg-choice-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--wdg-choice-brand-dark);
    font-size: 12px;
    letter-spacing: .11em;
}

.wdg-choice-v3 .wg-choice-hero__label::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--wdg-choice-brand);
}

.wdg-choice-v3 .wg-choice-hero h1 {
    max-width: 790px;
    color: var(--wdg-choice-ink);
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.01;
    letter-spacing: -.052em;
    text-wrap: balance;
}

.wdg-choice-v3 .wdg-choice-intro__text {
    max-width: 760px;
    margin-top: 22px;
    color: var(--wdg-choice-text);
    font-size: 18px;
    line-height: 1.72;
}

.wdg-choice-v3 .wdg-choice-explainer {
    padding: 28px 28px 25px;
    border: 1px solid rgba(13,116,87,.14);
    border-radius: 24px;
    background: rgba(255,255,255,.88);
    box-shadow: var(--wdg-choice-shadow);
}

.wdg-choice-v3 .wdg-choice-explainer strong {
    margin-bottom: 16px;
    color: var(--wdg-choice-ink);
    font-size: 17px;
}

.wdg-choice-v3 .wdg-choice-explainer ol {
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
    counter-reset: wdg-choice-steps;
}

.wdg-choice-v3 .wdg-choice-explainer li {
    position: relative;
    min-height: 34px;
    padding: 6px 0 6px 44px;
    color: var(--wdg-choice-text);
    line-height: 1.45;
    counter-increment: wdg-choice-steps;
}

.wdg-choice-v3 .wdg-choice-explainer li::before {
    content: counter(wdg-choice-steps);
    position: absolute;
    left: 0;
    top: 1px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--wdg-choice-soft);
    color: var(--wdg-choice-brand-dark);
    font-size: 13px;
    font-weight: 900;
}

.wdg-choice-v3 .wg-choice-page__body {
    min-height: calc(100vh - 330px);
    padding: 46px 0 70px;
    background: transparent;
}

.wdg-choice-v3 .wg-choice {
    border: 1px solid var(--wdg-choice-line);
    border-radius: 26px;
    box-shadow: var(--wdg-choice-shadow);
}

.wdg-choice-v3 .wg-choice__progress {
    height: 8px;
    background: #e3ece7;
}

.wdg-choice-v3 .wg-choice__progress span {
    background: linear-gradient(90deg, var(--wdg-choice-brand-dark), var(--wdg-choice-brand));
}

.wdg-choice-v3 .wg-choice__form {
    min-height: 610px;
    padding: 50px 58px 122px;
}

.wdg-choice-v3 .wg-choice__step {
    inset: 50px 58px auto;
}

.wdg-choice-v3 .wg-choice__eyebrow,
.wdg-choice-v3 .wg-choice-results-head p {
    color: var(--wdg-choice-brand-dark);
}

.wdg-choice-v3 .wg-choice__step h2,
.wdg-choice-v3 .wg-choice-results-head h2,
.wdg-choice-v3 .wg-choice-card h2 a {
    color: var(--wdg-choice-ink);
}

.wdg-choice-v3 .wg-choice__step > p:not(.wg-choice__eyebrow),
.wdg-choice-v3 .wg-choice-results-head span {
    color: var(--wdg-choice-muted);
}

.wdg-choice-v3 .wg-choice__option > span {
    border-color: #d7e5de;
    border-radius: 15px;
    color: var(--wdg-choice-text);
    box-shadow: 0 5px 15px rgba(19,57,44,.025);
}

.wdg-choice-v3 .wg-choice__option:hover > span {
    border-color: #8abdaa;
    background: #f7fbf9;
    box-shadow: 0 10px 24px rgba(13,116,87,.07);
}

.wdg-choice-v3 .wg-choice__option.is-selected > span,
.wdg-choice-v3 .wg-choice__option input:checked + span {
    border-color: var(--wdg-choice-brand);
    background: var(--wdg-choice-soft);
    box-shadow: 0 0 0 3px rgba(13,116,87,.10);
}

.wdg-choice-v3 .wg-choice__option input:checked + span::before {
    border-color: var(--wdg-choice-brand);
    background: var(--wdg-choice-brand);
    box-shadow: inset 0 0 0 4px var(--wdg-choice-soft);
}

.wdg-choice-v3 .wg-choice__visual-icon {
    background: var(--wdg-choice-soft);
    color: var(--wdg-choice-brand);
}

.wdg-choice-v3 .wg-choice__info {
    border-color: #d5e7df;
    background: #f2f8f5;
    color: #536b62;
}

.wdg-choice-v3 .wg-choice__info strong,
.wdg-choice-v3 .wg-choice__budget-value strong {
    color: var(--wdg-choice-brand-dark);
}

.wdg-choice-v3 .wg-choice__budget {
    border-color: #d8e6df;
    background: #f8fbf9;
}

.wdg-choice-v3 .wg-choice__range {
    background: linear-gradient(to right, var(--wdg-choice-brand) 0 var(--range-progress), #dce8e2 var(--range-progress) 100%);
}

.wdg-choice-v3 .wg-choice__range::-webkit-slider-thumb,
.wdg-choice-v3 .wg-choice__range::-moz-range-thumb {
    background: var(--wdg-choice-brand);
}

.wdg-choice-v3 .wg-choice__actions {
    border-color: #e2ebe6;
}

.wdg-choice-v3 .wg-choice__back {
    color: #3f574f;
    background: #edf2ef;
}

.wdg-choice-v3 .wg-choice__next,
.wdg-choice-v3 .wg-choice__submit,
.wdg-choice-v3 .wg-choice-restart,
.wdg-choice-v3 .wg-choice-empty button {
    color: #fff;
    background: var(--wdg-choice-brand);
    box-shadow: 0 9px 22px rgba(13,116,87,.20);
}

.wdg-choice-v3 .wg-choice__next:hover,
.wdg-choice-v3 .wg-choice__submit:hover {
    background: var(--wdg-choice-brand-dark);
}

.wdg-choice-v3 .wg-choice__loading span {
    border-color: #d8e7df;
    border-top-color: var(--wdg-choice-brand);
}

.wdg-choice-v3 .wg-choice-card {
    border-color: var(--wdg-choice-line);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(18,52,41,.07);
}

.wdg-choice-v3 .wg-choice-card--center {
    border-color: var(--wdg-choice-brand);
    box-shadow: 0 22px 48px rgba(13,116,87,.14);
}

.wdg-choice-v3 .wg-choice-card__top,
.wdg-choice-v3 .wg-choice-card__specs span {
    background: #f4f8f6;
}

.wdg-choice-v3 .wg-choice-card--winner .wg-choice-card__top {
    background: var(--wdg-choice-soft);
}

.wdg-choice-v3 .wg-choice-card__rank,
.wdg-choice-v3 .wg-choice-card--winner .wg-choice-card__rank {
    background: var(--wdg-choice-brand);
}

.wdg-choice-v3 .wg-choice-card__label,
.wdg-choice-v3 .wg-choice-card__match {
    color: var(--wdg-choice-brand-dark);
}

.wdg-choice-v3 .wg-choice-card__match {
    border-color: #cfe2d9;
}

.wdg-choice-v3 .wg-choice-card__offer > a {
    background: var(--wdg-choice-brand);
    box-shadow: 0 9px 22px rgba(13,116,87,.18);
}

@media (max-width: 980px) {
    .wdg-choice-v3 .wdg-choice-intro__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wdg-choice-v3 .wdg-choice-explainer {
        max-width: 680px;
    }
}

@media (max-width: 700px) {
    .wdg-choice-v3 .wg-choice-appbar {
        min-height: 62px;
    }

    .wdg-choice-v3 .wg-choice-appbar__inner,
    .wdg-choice-v3 .wg-choice-page__container {
        width: calc(100% - 28px);
        max-width: 100%;
    }

    .wdg-choice-v3 .wg-choice-appbar__inner {
        min-height: 62px;
        gap: 10px;
    }

    .wdg-choice-v3 .wg-choice-appbar__brand {
        max-width: calc(100% - 74px);
        font-size: 16px;
    }

    .wdg-choice-v3 .wg-choice-appbar__mark {
        width: 31px;
        height: 31px;
        flex: 0 0 31px;
    }

    .wdg-choice-v3 .wg-choice-appbar__exit {
        flex: 0 0 auto;
        padding: 0 10px;
        border: 0;
        background: transparent;
    }

    .wdg-choice-v3 .wg-choice-hero.wdg-choice-intro {
        padding: 42px 0 36px;
    }

    .wdg-choice-v3 .wdg-choice-intro__grid {
        display: block;
        width: 100%;
    }

    .wdg-choice-v3 .wg-choice-hero__content,
    .wdg-choice-v3 .wdg-choice-explainer,
    .wdg-choice-v3 .wg-choice-hero h1,
    .wdg-choice-v3 .wdg-choice-intro__text {
        width: 100%;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .wdg-choice-v3 .wg-choice-hero h1 {
        font-size: clamp(34px, 10.5vw, 46px);
        line-height: 1.04;
        letter-spacing: -.045em;
        text-wrap: pretty;
    }

    .wdg-choice-v3 .wdg-choice-intro__text {
        margin-top: 17px;
        font-size: 16px;
        line-height: 1.64;
    }

    .wdg-choice-v3 .wdg-choice-explainer {
        margin-top: 26px;
        padding: 21px 20px 18px;
        border-radius: 19px;
    }

    .wdg-choice-v3 .wdg-choice-explainer li {
        padding-left: 40px;
        font-size: 14px;
    }

    .wdg-choice-v3 .wg-choice-page__body {
        padding: 24px 0 38px;
    }

    .wdg-choice-v3 .wg-choice {
        border-radius: 18px;
    }

    .wdg-choice-v3 .wg-choice__form {
        min-height: 760px;
        padding: 31px 18px 106px;
    }

    .wdg-choice-v3 .wg-choice__step {
        inset: 31px 18px auto;
        width: auto;
        max-width: calc(100% - 36px);
    }

    .wdg-choice-v3 .wg-choice__step h2 {
        font-size: clamp(28px, 8vw, 34px);
        overflow-wrap: anywhere;
    }
}


/* Op mobiel start de keuzehulp direct met de vragen. De uitgebreide
   introductie blijft uitsluitend op tablet en desktop zichtbaar. */
@media (max-width: 700px) {
    .wdg-choice-v3 .wg-choice-hero.wdg-choice-intro {
        display: none !important;
    }

    .wdg-choice-v3 .wg-choice-page__body {
        padding-top: 18px;
    }
}
\n\n/* v29: rustige eindactie als tekstlink en geen energieschaal boven vraag 3. */
.wdg-choice-v3 .wg-choice-restart.wg-choice-restart--link,
.wdg-choice-v3 .wg-choice-restart.wg-choice-restart--link:hover,
.wdg-choice-v3 .wg-choice-restart.wg-choice-restart--link:focus-visible {
    display: block;
    width: auto;
    min-height: 0;
    margin: 26px auto 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--wdg-choice-brand-dark, #0a5f4a);
    font: inherit;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}
.wdg-choice-v3 .wg-choice-restart.wg-choice-restart--link:hover {
    color: var(--wdg-choice-brand, #0d7457);
    text-decoration-thickness: 2px;
}


/* ==========================================================
   v34 — Resultaten keuzehulp: rustige lichtgroene voortgang,
   Coolblue-CTA's en één eindlink onder de resultaten.
   ========================================================== */
.wdg-choice-v3 .wg-choice__progress {
    background: #e8f2ed;
}

.wdg-choice-v3 .wg-choice__progress span {
    background: linear-gradient(90deg, #8fc9ad 0%, #69b58f 100%);
}

.wdg-choice-v3 .wg-choice-card--center {
    border-color: #58a97c;
    box-shadow: 0 22px 48px rgba(46, 125, 84, .13);
}

.wdg-choice-v3 .wg-choice-card--winner .wg-choice-card__top,
.wdg-choice-v3 .wg-choice-card--center .wg-choice-card__top {
    background: #edf7f1;
}

.wdg-choice-v3 .wg-choice-card__match {
    border-color: #c8e2d4;
    background: #f7fbf9;
    color: #25714d;
}

.wdg-choice-v3 .wg-choice-card__offer > a,
.wdg-choice-v3 .wg-choice-card__offer > a:link,
.wdg-choice-v3 .wg-choice-card__offer > a:visited {
    color: #fff !important;
    background: #ff6600 !important;
    box-shadow: 0 9px 22px rgba(255, 102, 0, .20);
}

.wdg-choice-v3 .wg-choice-card__offer > a:hover,
.wdg-choice-v3 .wg-choice-card__offer > a:focus-visible {
    color: #fff !important;
    background: #e95d00 !important;
    box-shadow: 0 11px 26px rgba(233, 93, 0, .24);
}

.wdg-choice-v3 .wg-choice-results-adjust-link {
    display: block;
    width: auto;
    min-height: 0;
    margin: 30px auto 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--wdg-choice-brand-dark, #0a5f4a);
    font: inherit;
    font-weight: 750;
    line-height: 1.5;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    cursor: pointer;
}

.wdg-choice-v3 .wg-choice-results-adjust-link:hover,
.wdg-choice-v3 .wg-choice-results-adjust-link:focus-visible {
    color: var(--wdg-choice-brand, #0d7457);
    background: transparent;
    text-decoration-thickness: 2px;
}
