/* ── Variabelen ── */
:root {
    --dko-black: #292827;
    --dko-white: #fff;
    --dko-lightgrey: #F0ECE9;
    --dko-brown: #D9D0C5;
    --dko-peer: #C6B979;
    --dko-peerdark: #AD9E60;
    --dko-beton: #8A8179;
    --dko-wortel: #EF7150;
    --dko-mahonie: #BC5235;
    --dko-subtitle: #585858;
    --dko-white-alt: #EEEBE4;

    --dko-font-syncopate: Syncopate, sans-serif;
    --dko-font-roboto: 'Roboto Slab', sans-serif;

    --dko-container-max: 1350px;
    --dko-container-padding: 20px;
}

/* ── Error box ── */
.dko-error-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    margin-top: 50px;
    margin-bottom: 24px;
    background-color: #FEF2F0;
    border: 1px solid var(--dko-wortel);
    border-radius: 6px;
}

.dko-error-box__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--dko-wortel);
    color: var(--dko-white);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

.dko-error-box__message {
    color: var(--dko-mahonie);
    font-family: var(--dko-font-roboto);
    font-size: 15px;
    line-height: 1.4;
}

/* ── Success message ── */
.dko-success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    width: 100%;
    text-align: center;
    padding: 60px 20px;
}

.dko-success-message h2 {
    font-family: var(--dko-font-syncopate);
    color: var(--dko-black);
    margin-bottom: 16px;
}

.dko-success-message p {
    font-family: var(--dko-font-roboto);
    color: var(--dko-subtitle);
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

/* ── Buttons ── */
.dko-funnel .dko-btn--next,
.dko-funnel .dko-btn--prev {
    outline: none;
}

.dko-funnel .dko-btn--next {
    display: inline-block;
    padding: 12px 22.5px;
    background: url('../img/orange-bg.png') center / 100% 100% no-repeat;
    color: var(--dko-white);
    font-family: var(--dko-font-syncopate);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

/* ── General ── */
.dko-offerte-pagina .center_logo {
    display: none;
}

/* ── Pageheader ── */
.dko-funnel .dko-funnel-pageheader {
    width: 100%;
    height: 427.5px;
    position: relative;
}

.dko-funnel .dko-funnel-container {
    margin: 0 auto;
    max-width: var(--dko-container-max);
    padding-left: var(--dko-container-padding);
    padding-right: var(--dko-container-padding);
}

.dko-funnel .dko-funnel-container.dko-funnel-step-2,
.dko-funnel .dko-funnel-container.dko-funnel-step-3 {
    max-width: 1725px;
}

.dko-funnel .dko-funnel-pageheader:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.79) 0%,
            rgba(0, 0, 0, 0) 100%);
}

.dko-funnel .dko-funnel-pageheader .background-image {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.dko-funnel .dko-funnel-pageheader .background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dko-funnel .dko-funnel-pageheader .dko-funnel-pageheader-content {
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    padding-bottom: 40px;
    align-items: flex-end;
    justify-content: center;
}

.dko-funnel .dko-funnel-pageheader .dko-funnel-pageheader-content h1 {
    color: var(--dko-white);
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 48.6px;
    line-height: 63px;
    font-family: var(--dko-font-syncopate);
}

@media screen and (max-width: 768px) {
    .dko-funnel .dko-funnel-pageheader .dko-funnel-pageheader-content {
        padding: 0 30px 30px 30px;
    }

    .dko-funnel .dko-funnel-pageheader .dko-funnel-pageheader-content h1 {
        font-size: 38px;
        line-height: 50px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .dko-funnel .dko-funnel-pageheader .dko-funnel-pageheader-content h1 {
        font-size: 28px;
        line-height: 40px;
    }
}

/* ── Progress bar ── */
.dko-funnel .dko-progress {
    max-width: 1075px;
    margin: 50px auto 0 auto;
}

.dko-funnel .dko-progress__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    gap: 50px;
    justify-content: center;
}

.dko-funnel .dko-progress__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22.5px;
    font-family: var(--dko-font-syncopate);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
    background: url('../img/progress-list-inactive-item.png') center / 100% 100% no-repeat;
    color: var(--dko-black);
    cursor: default;
    position: relative;
}

.dko-funnel .dko-progress__item:not(.dko-progress__item--active) {
    opacity: .5;
}

.dko-funnel .dko-progress__item--active {
    background: url('../img/progress-list-active-item.png') center / 100% 100% no-repeat;
    color: var(--dko-lightgrey);
}

.dko-funnel .dko-progress__item--done {
    background: url('../img/progress-list-inactive-item.png') center / 100% 100% no-repeat;
    color: var(--dko-black);
    cursor: pointer;
}

/* Chevron separators */
.dko-funnel .dko-progress__chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
    background-color: var(--dko-lightgrey);
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.15);
}

.dko-funnel .dko-progress__chevron img {
    display: block;
}

@media screen and (max-width: 768px) {
    .dko-funnel .dko-progress__list {
        flex-direction: column;
        gap: 20px;
    }

    .dko-funnel .dko-progress__item {
        width: 100%;
        padding: 14px 20px;
        font-size: 12px;
    }

    .dko-funnel .dko-progress__item+.dko-progress__item::before {
        left: 50%;
        top: -16px;
        transform: translateX(-50%) rotate(90deg);
    }
}

.dko-funnel .dko-funnel__body {
    margin-top: 80px;
    margin-bottom: 80px;
}

.dko-funnel .dko-step .dko-step-heading {
    margin-bottom: 50px;
}

.dko-funnel .dko-step .dko-step-heading h2 {
    font-size: 40px;
    margin-bottom: 0;
    font-family: var(--dko-font-syncopate);
}

.dko-funnel .dko-step .dko-form-trigger .dko-trigger-buttons {
    gap: 16px;
    display: flex;
}

.dko-funnel .dko-step .dko-form-trigger .dko-trigger-buttons .button {
    padding: 8px 16px;
    background: url('../img/progress-list-inactive-item.png') center / 100% 100% no-repeat;
    color: var(--dko-black);
    font-family: var(--dko-font-syncopate);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.dko-funnel .dko-step .dko-form-trigger .dko-trigger-buttons .button:not(.active) {
    opacity: .5;
}

.dko-funnel .dko-step .dko-form-trigger .dko-trigger-buttons .button.active {
    background: url('../img/progress-list-active-item.png') center / 100% 100% no-repeat;
    color: var(--dko-lightgrey);
}

.dko-funnel .dko-form .dko-form-label {
    display: block;
    font-size: 16px;
    margin-bottom: 13px;
}

.dko-funnel .dko-form {
    margin-top: 40px;
}

.dko-funnel .dko-form .dko-form-item {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 2px;
    background-color: var(--dko-brown);
}

.dko-funnel .dko-form .dko-form-item[type="date"] {
    cursor: pointer;
    position: relative;
}

.dko-funnel .dko-form .dko-form-item[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dko-funnel .dko-form .dko-form-group:not(:last-child) {
    margin-bottom: 25px;
}

.dko-funnel__body-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.dko-funnel-step-4 .dko-funnel__body-inner {
    flex-direction: column;
}

.dko-funnel-step-4 .dko-funnel__body-inner .dko-funnel__content {
    width: 100%;
    flex: 1 0 100%;
    max-width: 100%;
}

.dko-funnel-step-4 .dko-funnel__body-inner .dko-sidebar {
    display: none;
}

.dko-funnel__body-inner .dko-sidebar {
    width: 500px;
    flex: 1 0 500px;
    max-width: 500px;
    min-height: 600px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1024px) {
    .dko-funnel__body-inner .dko-sidebar {
        width: 100%;
        flex: 1 0 100%;
        max-width: 100%;
        position: relative;
        top: auto;
        margin-top: 30px;
    }
}

.dko-funnel__body-inner .dko-sidebar .dko-sidebar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dko-funnel__body-inner .dko-funnel__content {
    width: calc(100% - 560px);
    flex: 1 0 calc(100% - 560px);
    max-width: calc(100% - 560px);
}

@media screen and (max-width: 1024px) {
    .dko-funnel__body-inner .dko-funnel__content {
        width: 100%;
        flex: 1 0 100%;
        max-width: 100%;
        margin-bottom: 0;
    }
}

.dko-funnel .dko-form .dko-form-group .dko-form-item-subtitle,
.dko-funnel .dko-personal-data-form .dko-form-group .dko-form-item-subtitle {
    display: block;
    font-size: 13px;
    margin-top: 12px;
    font-weight: 500;
}

.dko-funnel .dko-sidebar .dko-sidebar-inner {
    position: relative;
    z-index: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dko-funnel .dko-sidebar .dko-sidebar-heading {
    margin-bottom: 40px;
}

.dko-funnel .dko-sidebar .dko-sidebar-heading h3 {
    font-size: 24px;
    margin-bottom: 0;
    font-family: var(--dko-font-syncopate);
}

.dko-funnel .dko-sidebar .dko-sidebar-content-block {
    margin-bottom: 25px;
}

.dko-funnel .dko-sidebar .dko-sidebar-content-block .dko-sidebar-content-block-heading {
    font-size: 18px;
    margin-bottom: 15px;
    font-family: var(--dko-font-syncopate);
}

.dko-funnel .dko-sidebar .dko-sidebar-content-block .dko-block-title .amounts {
    margin-top: 10px;
    font-size: 16px;
    display: block;
    font-weight: 500;
}

.dko-funnel .dko-sidebar .dko-sidebar-content-block .dko-block-title .amounts .price {
    margin-left: 10px;
}

.dko-funnel .dko-sidebar .dko-sidebar-content-block .dko-sidebar-content-block-heading h4 {
    margin-bottom: 0;
}

.dko-funnel .dko-sidebar .dko-sidebar-content-block-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.dko-funnel .dko-sidebar .dko-sidebar-content-block-item:not(:last-child) {
    margin-bottom: 15px;
}

.dko-funnel .dko-sidebar .dko-sidebar-content-block-item .dko-block-title {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--dko-font-roboto);
}

.dko-funnel .dko-sidebar .dko-sidebar-content-block-item .dko-block-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--dko-subtitle);
    font-family: var(--dko-font-syncopate);
}

.dko-funnel .dko-sidebar .dko-sidebar-content-block-item .dko-block-price-actions {
    gap: 40px;
    display: flex;
    flex-wrap: wrap;
}

.dko-funnel .dko-sidebar .dko-sidebar-content-block-item .dko-block-price-actions .dko-block-actions {
    gap: 12px;
    display: flex;
    flex-wrap: wrap;
}

.dko-funnel .dko-sidebar .dko-sidebar-content-block-item .dko-block-price-actions .dko-block-actions a {
    text-decoration: none;
}

.dko-funnel .dko-sidebar .dko-sidebar-footer {
    padding-top: 30px;
    border-top: 1px solid var(--dko-black);
    margin-top: auto;
}

.dko-funnel .dko-sidebar .dko-sidebar-footer .dko-sidebar-footer-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.dko-funnel .dko-sidebar .dko-sidebar-footer .dko-sidebar-footer-item:not(:last-child) {
    margin-bottom: 25px;
}

.dko-funnel .dko-sidebar .dko-sidebar-footer .dko-sidebar-footer-item .dko-footer-title,
.dko-funnel .dko-sidebar .dko-sidebar-footer .dko-sidebar-footer-item .dko-footer-price {
    font-size: 16px;
    text-transform: uppercase;
    font-family: var(--dko-font-syncopate);
}

.dko-funnel .dko-sidebar .dko-sidebar-footer .dko-sidebar-footer-item .dko-footer-price {
    color: var(--dko-subtitle);
}

.dko-funnel .dko-funnel__nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.dko-funnel .dko-funnel__nav .dko-btn--prev {
    padding: 12px 22.5px;
    background: url('../img/progress-list-inactive-item.png') center / 100% 100% no-repeat;
    color: var(--dko-black);
    font-family: var(--dko-font-syncopate);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.dko-funnel .dko-funnel__nav .dko-btn--prev[hidden] {
    display: none;
}

.dko-funnel .dko-funnel__nav .dko-btn--next {
    padding: 12px 22.5px;
    margin-left: auto;
    background: url('../img/orange-bg.png') center / 100% 100% no-repeat;
    color: var(--dko-white);
    font-family: var(--dko-font-syncopate);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

@media screen and (max-width: 480px) {
    .dko-funnel .dko-funnel__nav .dko-btn--next {
        font-size: 13px;
    }
}

.dko-categories .dko-category:not(:last-child) {
    margin-bottom: 65px;
}

.dko-categories .dko-category .dko-category-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dko-peerdark);
    font-family: var(--dko-font-syncopate);
}

.dko-categories .dko-category .dko-category-title h3 {
    margin-bottom: 0;
}

.dko-categories .dko-category-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
    justify-content: flex-start;
    row-gap: 40px;
}

.dko-categories .dko-category-items .dko-category-card {
    margin: 0 20px;
    width: calc(33.3333% - 40px);
    flex: 1 0 calc(33.3333% - 40px);
    max-width: calc(33.3333% - 40px);
}

@media screen and (max-width: 1440px) {
    .dko-categories .dko-category-items .dko-category-card {
        width: calc(50% - 40px);
        flex: 1 0 calc(50% - 40px);
        max-width: calc(50% - 40px);
    }
}

@media screen and (max-width: 768px) {
    .dko-categories .dko-category-items .dko-category-card {
        width: calc(50% - 40px);
        flex: 1 0 calc(50% - 40px);
        max-width: calc(50% - 40px);
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 480px) {
    .dko-categories .dko-category-items .dko-category-card {
        margin: 0;
        width: 100%;
        flex: 1 0 100%;
        max-width: 100%;
    }

    .dko-categories .dko-category-items {
        margin: 0;
    }
}

.dko-categories .dko-category-items .dko-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 96.6% 100%, 1.5% 100%);
    background-color: #D9D9D9;
}

.dko-categories .dko-category-items .dko-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dko-categories .dko-category-items .dko-card-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.dko-categories .dko-category-items .dko-card-image .dko-info-icon {
    top: 12px;
    right: 12px;
    z-index: 2;
    font-size: 24px;
    color: var(--dko-peer) !important;
    position: absolute;
    cursor: pointer;
}

.dko-categories .dko-category-items .dko-card-image--no-image::after {
    display: none;
}

.dko-categories .dko-category-items .dko-card-image--no-image .dko-info-icon {
    color: #292827 !important;
}

.dko-categories .dko-category-items .dko-card-content {
    margin-top: 8px;
}

.dko-categories .dko-category-items .dko-card-content .dko-card-content-amount-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.dko-categories .dko-category-items .dko-card-content .dko-card-title-price {
    min-width: 0;
    flex: 1;
}

.dko-categories .dko-category-items .dko-card-content .dko-card-content-amount-wrapper .dko-card-title h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-family: var(--dko-font-roboto);
}

.dko-categories .dko-category-items .dko-card-content .dko-card-content-amount-wrapper .dko-card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--dko-subtitle);
}

.dko-categories .dko-category-items .dko-card-content .dko-card-amounts {
    gap: 5px;
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
    min-width: 150px;
}

.dko-categories .dko-category-items .dko-card-content .dko-card-amounts .amount {
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    background: url('../img/progress-list-inactive-item.png') center / 100% 100% no-repeat;
    color: var(--dko-black);
    font-family: var(--dko-font-syncopate);
    border: none;
    outline: none;
    cursor: pointer;
}

.dko-categories .dko-category-items .dko-card-content .dko-card-amounts .amount.inactive {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.dko-categories .dko-category-items .dko-card-content .dko-card-amounts .total-amount {
    width: 55px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/total-amount-bg.svg') center / 100% 100% no-repeat;
    font-weight: 700;
    font-size: 18px;
    color: var(--dko-black);
}

/* ── Popup ── */
.dko-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dko-popup[hidden] {
    display: none;
}

.dko-popup .dko-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.dko-popup .dko-popup__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 980px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: stretch;
    background: url('../img/popup-bg.jpg') center / cover no-repeat;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}

.dko-popup .dko-popup__close {
    position: absolute;
    top: 25px;
    right: 45px;
    z-index: 2;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--dko-black);
    cursor: pointer;
    line-height: 1;
}

.dko-popup .dko-popup__image {
    width: 50%;
    min-height: 350px;
    flex-shrink: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 96.6% 100%, 1.5% 100%);
    background-color: #D9D9D9;
}

.dko-popup .dko-popup__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dko-popup .dko-popup__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dko-popup .dko-popup__title {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--dko-font-roboto);
    color: var(--dko-black);
}

.dko-popup .dko-popup__price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--dko-subtitle);
    margin-bottom: 20px;
    font-family: var(--dko-font-roboto);
    margin-bottom: 25px;
}

.dko-popup .dko-popup__description {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--dko-black);
}

.dko-popup .dko-popup__items {
    padding: 0;
    margin: 0 0 20px 0;
    color: var(--dko-black);
    font-size: 16px;
    font-weight: 400;
}

.dko-popup .dko-popup__add {
    padding: 12px 22.5px;
    background: url('../img/orange-bg.png') center / 100% 100% no-repeat;
    color: var(--dko-white);
    font-family: var(--dko-font-syncopate);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .dko-popup .dko-popup__content {
        flex-direction: column;
        max-width: 95%;
        padding: 30px 25px;
        clip-path: none;
    }

    .dko-popup .dko-popup__image {
        width: 100%;
        min-height: 0;
        height: 200px;
        flex-shrink: 0;
    }
}

.dko-personal-data-form {
    width: 100%;
    margin-bottom: 50px;
    background-color: var(--dko-brown);
    clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
}

.dko-personal-data-form-wrapper {
    padding: 50px;
}

.dko-personal-data-form .dko-personal-data-form-heading {
    margin-bottom: 40px;
}

.dko-personal-data-form .dko-personal-data-form-heading h2 {
    font-size: 40px;
    margin-bottom: 0;
    font-family: var(--dko-font-syncopate);
}

.dko-personal-data-form .dko-form-group {
    width: 100%;
}

.dko-personal-data-form .dko-form-group .dko-form-label {
    display: block;
}


.dko-personal-data-form .dko-form-group:not(:last-child) {
    margin-bottom: 25px;
}

.dko-personal-data-form .dko-form-group .dko-form-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 2px;
    background-color: var(--dko-white-alt);
}

.dko-totaaloverzicht {
    width: 100%;
    background-color: var(--dko-brown);
    clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
    padding: 50px;
}

.dko-totaaloverzicht__heading {
    margin-bottom: 40px;
}

.dko-totaaloverzicht__heading h2 {
    font-size: 40px;
    margin-bottom: 0;
    font-family: var(--dko-font-syncopate);
}

.dko-totaaloverzicht__section {
    background-color: var(--dko-white-alt);
    margin-bottom: 12px;
}

.dko-totaaloverzicht__section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 25px;
    cursor: pointer;
}

.dko-totaaloverzicht__section-title {
    font-size: 24px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: var(--dko-font-syncopate);
}

.dko-totaaloverzicht__section-header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.dko-totaaloverzicht__section-price {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--dko-font-syncopate);
    color: var(--dko-subtitle);
}

.dko-totaaloverzicht__toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dko-black);
    padding: 0;
}

.dko-totaaloverzicht__section-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.dko-totaaloverzicht__section--open .dko-totaaloverzicht__section-body {
    max-height: 500px;
    padding: 0 25px 25px;
}

.dko-totaaloverzicht__toggle i {
    transition: transform 0.3s ease;
}

.dko-totaaloverzicht__section--open .dko-totaaloverzicht__toggle i {
    transform: rotate(180deg);
}

.dko-totaaloverzicht__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8px 0;
}

.dko-totaaloverzicht__item-name {
    display: block;
    font-size: 22px;
    font-weight: 700;
    font-family: var(--dko-font-roboto);
    margin-bottom: 5px;
}

.dko-totaaloverzicht__item-detail {
    display: block;
    font-size: 16px;
    color: var(--dko-black);
}

.dko-totaaloverzicht__item-detail {
    margin-top: 5px;
    font-weight: 700;
    letter-spacing: .5px;
}

.dko-totaaloverzicht__item-detail--separated {
    margin-top: 16px;
}

.dko-totaaloverzicht__item-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.dko-totaaloverzicht__item-price {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--dko-font-syncopate);
    color: var(--dko-subtitle);
}

.dko-totaaloverzicht__item-actions {
    display: flex;
    gap: 8px;
}

.dko-totaaloverzicht__item-actions--mobile {
    display: none;
}

.dko-totaaloverzicht__action {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--dko-black);
    padding: 0;
}

.dko-totaaloverzicht__footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 25px;
    margin-top: 15px;
}

.dko-totaaloverzicht__footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dko-totaaloverzicht__footer-row--total {
    padding-top: 8px;
    border-top: 1px solid var(--dko-brown);
}

.dko-totaaloverzicht__footer-label,
.dko-totaaloverzicht__footer-subtotaal,
.dko-totaaloverzicht__footer-btw,
.dko-totaaloverzicht__footer-price {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--dko-font-syncopate);
}

.dko-totaaloverzicht__footer-subtotaal,
.dko-totaaloverzicht__footer-btw,
.dko-totaaloverzicht__footer-price {
    color: var(--dko-subtitle);
}

@media screen and (max-width: 1024px) {
    .dko-progress .dko-progress__list {
        gap: 25px;
        flex-direction: column;
    }

    .dko-progress .dko-progress__list .dko-progress__item {
        width: 100%;
        font-size: 14px;
        padding: 10px 20px;
    }

    .dko-progress .dko-progress__list .dko-progress__chevron {
        transform: rotate(90deg);
    }

    /* Volgorde: content → nav → sidebar */
    .dko-funnel__body {
        display: flex;
        flex-direction: column;
    }

    .dko-funnel__body-inner {
        display: contents;
    }

    .dko-funnel__body-inner .dko-funnel__content {
        order: 1;
    }

    .dko-funnel .dko-funnel__nav {
        order: 2;
        margin-top: 40px;
        margin-bottom: 0;
        flex-direction: column;
        gap: 20px;
    }

    .dko-funnel__body-inner .dko-sidebar {
        order: 3;
    }

    .dko-funnel .dko-funnel__nav .dko-btn--next,
    .dko-funnel .dko-funnel__nav .dko-btn--prev {
        width: 100%;
        padding: 12px 16px;
        text-align: center;
        white-space: normal;
    }

    .dko-funnel .dko-funnel__nav .dko-btn--next {
        font-size: 16px;
    }

    .dko-funnel .dko-step .dko-step-heading {
        margin-bottom: 30px;
    }

    .dko-funnel .dko-step .dko-form-trigger .dko-trigger-buttons .button {
        text-align: center;
        width: calc(50% - 8px);
        flex: 1 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .dko-funnel .dko-sidebar .dko-sidebar-heading {
        margin-bottom: 25px;
    }

    .dko-funnel .dko-sidebar .dko-sidebar-footer {
        padding-top: 25px;
    }

    .dko-funnel .dko-sidebar .dko-sidebar-footer .dko-sidebar-footer-item .dko-footer-title,
    .dko-funnel .dko-sidebar .dko-sidebar-footer .dko-sidebar-footer-item .dko-footer-price {
        font-size: 14px;
    }

    .dko-funnel .dko-step .dko-step-heading h2 {
        font-size: 28px;
        line-height: normal;
    }

    .dko-categories .dko-category .dko-category-title {
        margin-bottom: 15px;
    }

    .dko-categories .dko-category .dko-category-title h3 {
        font-size: 24px;
    }

    .dko-categories .dko-category-items .dko-card-content .dko-card-content-amount-wrapper .dko-card-title h3 {
        font-size: 18px;
    }

    .dko-categories .dko-category-items .dko-card-content .dko-card-content-amount-wrapper .dko-card-price {
        font-size: 16px;
        margin-top: -10px;
    }

    .dko-categories .dko-category:not(:last-child) {
        margin-bottom: 40px;
    }

    .dko-categories .dko-category-items .dko-card-content {
        margin-top: 12px;
    }

    .dko-funnel .dko-sidebar .dko-sidebar-content-block {
        margin-bottom: 15px;
    }

    .dko-funnel .dko-sidebar .dko-sidebar-content-block-item .dko-block-price {
        font-size: 14px;
        line-height: 24px;
    }

    .dko-personal-data-form .dko-personal-data-form-heading h2 {
        font-size: 24px;
        line-height: normal;
    }

    .dko-totaaloverzicht__heading {
        margin-bottom: 25px;
    }

    .dko-totaaloverzicht__heading h2 {
        font-size: 24px;
    }

    .dko-totaaloverzicht__section-title {
        font-size: 18px;
    }

    .dko-totaaloverzicht__section-price {
        display: none;
    }

    .dko-totaaloverzicht__item-name {
        font-size: 18px;
    }

    .dko-totaaloverzicht__section-header {
        padding: 25px 16px;
    }

    .dko-totaaloverzicht__item-price {
        font-size: 14px;
        color: var(--dko-subtitle);
    }

    .dko-totaaloverzicht__section--open .dko-totaaloverzicht__section-body {
        padding: 0 15px 15px;
    }

    .dko-totaaloverzicht__item {
        margin-top: 0;
    }

    .dko-totaaloverzicht__toggle i {
        font-size: 18px;
    }

    .dko-totaaloverzicht__item-actions--desktop {
        display: none;
    }

    .dko-totaaloverzicht__item-actions--mobile {
        display: flex;
        gap: 12px;
        padding-top: 10px;
    }

    /* .dko-totaaloverzicht__footer-row:not(.dko-totaaloverzicht__footer-row--total) {
        display: none;
    } */

    .dko-totaaloverzicht__footer-label,
    .dko-totaaloverzicht__footer-subtotaal,
    .dko-totaaloverzicht__footer-btw,
    .dko-totaaloverzicht__footer-price {
        font-size: 16px;
    }

    .dko-totaaloverzicht__item-detail {
        margin-top: 12px;
    }
}

@media screen and (max-width: 480px) {
    .dko-funnel .dko-sidebar .dko-sidebar-inner {
        padding: 30px 16px 16px 16px;
    }

    .dko-personal-data-form-wrapper {
        padding: 30px 16px 60px 16px;
    }

    .dko-totaaloverzicht {
        padding: 30px 16px;
    }
}

/* ── Maatwerk pagina layout ── */
.dko-maatwerk-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.dko-maatwerk-layout .dko-maatwerk-content {
    flex: 0 0 450px;
    max-width: 450px;
    font-family: var(--dko-font-roboto);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dko-black);
}

.dko-maatwerk-layout .dko-maatwerk-content h2,
.dko-maatwerk-layout .dko-maatwerk-content h3,
.dko-maatwerk-layout .dko-maatwerk-content h4 {
    font-family: var(--dko-font-syncopate);
    margin-bottom: 16px;
}

.dko-maatwerk-layout .dko-maatwerk-content ul,
.dko-maatwerk-layout .dko-maatwerk-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.dko-maatwerk-layout .dko-maatwerk-content img {
    max-width: 100%;
    height: auto;
}

.dko-maatwerk-layout .dko-maatwerk-form-col {
    flex: 1;
    min-width: 0;
}

@media screen and (max-width: 1024px) {
    .dko-maatwerk-layout {
        flex-direction: column;
        gap: 40px;
    }

    .dko-maatwerk-layout .dko-maatwerk-form-col {
        flex: 1 0 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .dko-maatwerk-layout .dko-maatwerk-content {
        flex: 1 0 100%;
        max-width: 700px;
        margin: 0 auto;
    }
}

/* ── Maatwerk drempelwaarde popup ── */
.dko-maatwerk-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dko-maatwerk-popup[hidden] {
    display: none;
}

.dko-maatwerk-popup .dko-maatwerk-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.dko-maatwerk-popup .dko-maatwerk-popup__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1045px;
    padding: 50px 30px;
    background: url('../img/popup-bg.png') center / 100% 100% no-repeat;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}

.dko-maatwerk-popup .dko-maatwerk-popup__close {
    position: absolute;
    top: 16px;
    right: 24px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--dko-white);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.dko-maatwerk-popup .dko-maatwerk-popup__content-wrapper {
    width: 435px;
    flex: 1 0 435px;
    max-width: 435px;
    text-align: left;
}

.dko-maatwerk-popup .dko-maatwerk-popup__content h2 {
    font-family: var(--dko-font-syncopate);
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dko-white);
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 0;
}

.dko-maatwerk-popup .dko-maatwerk-popup__content p {
    font-family: var(--dko-font-roboto);
    font-size: 16px;
    line-height: 1.5;
    color: var(--dko-white);
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: .5px;
    margin-top: 0;
}

.dko-maatwerk-popup .dko-maatwerk-popup__btn {
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .dko-maatwerk-popup .dko-maatwerk-popup__content {
        gap: 50px;
        align-items: flex-start;
        flex-direction: column;
        max-width: calc(100vw - 200px);
    }

    .dko-maatwerk-popup .dko-maatwerk-popup__content-wrapper {
        width: 100%;
        flex: 1 0 100%;
        max-width: 100%;
    } 
}

@media screen and (max-width: 480px) {
    .dko-maatwerk-popup .dko-maatwerk-popup__content {
        max-width: calc(100vw - 75px);
    }

    .dko-maatwerk-popup .dko-maatwerk-popup__btn {
        max-width: 100%;
        box-sizing: border-box;
        font-size: 12px;
        white-space: normal;
    }
}

/* ── Extra's ── */
.dko-extras-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
    justify-content: flex-start;
    row-gap: 40px;
}

.dko-extras-items .dko-extras-card {
    margin: 0 20px;
    width: calc(33.3333% - 40px);
    flex: 1 0 calc(33.3333% - 40px);
    max-width: calc(33.3333% - 40px);
}

@media screen and (max-width: 1440px) {
    .dko-extras-items .dko-extras-card {
        width: calc(50% - 40px);
        flex: 1 0 calc(50% - 40px);
        max-width: calc(50% - 40px);
    }
}

@media screen and (max-width: 768px) {
    .dko-extras-items .dko-extras-card {
        width: calc(50% - 40px);
        flex: 1 0 calc(50% - 40px);
        max-width: calc(50% - 40px);
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 480px) {
    .dko-extras-items .dko-extras-card {
        margin: 0;
        width: 100%;
        flex: 1 0 100%;
        max-width: 100%;
    }

    .dko-extras-items {
        margin: 0;
    }
}

.dko-extras-card .dko-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 96.6% 100%, 1.5% 100%);
    background-color: #D9D9D9;
}

.dko-extras-card .dko-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dko-extras-card .dko-card-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
    pointer-events: none;
}

.dko-extras-card .dko-info-icon {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.dko-extras-card .dko-card-content {
    padding: 15px 0;
}

.dko-extras-card .dko-card-content-amount-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dko-extras-card .dko-card-title h3 {
    font-size: 16px;
    margin: 0 0 4px;
    color: var(--dko-black);
}

.dko-extras-card .dko-card-price {
    font-size: 14px;
    color: var(--dko-black);
    font-weight: 600;
}

/* Extras button */
.dko-extras-btn {
    border: 2px solid var(--dko-black, #292827);
    background: transparent;
    color: var(--dko-black, #292827);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.dko-extras-btn:hover {
    background-color: var(--dko-black, #292827);
    color: #fff;
}

.dko-extras-btn--active {
    background-color: var(--dko-black, #292827);
    color: #fff;
}

.dko-extras-btn--active:hover {
    background-color: transparent;
    color: var(--dko-black, #292827);
}

/* ─────────────────────────────────────────────
   Mobile UX overrides
   - Compact pageheader, numbered horizontal stepper,
     fixed popup close button, safe-area bottom padding,
     hide WhatsApp floating button while popup open.
   Keep at end so it overrides earlier rules.
   ───────────────────────────────────────────── */

@media screen and (max-width: 768px) {
    .dko-funnel .dko-funnel-pageheader { height: 240px; }
}
@media screen and (max-width: 480px) {
    .dko-funnel .dko-funnel-pageheader { height: 200px; }
    .dko-funnel .dko-funnel-pageheader .dko-funnel-pageheader-content {
        padding: 0 20px 18px 20px;
    }
}

/* Compact horizontal stepper for tablet & mobile (incl. iPad landscape) */
@media screen and (max-width: 1280px) {
    .dko-funnel .dko-progress {
        margin-top: 24px;
        padding: 0 8px;
        position: relative;
    }
    .dko-funnel .dko-progress__list,
    .dko-progress .dko-progress__list {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0;
        position: relative;
        counter-reset: dko-step 0;
    }
    /* Connector line behind circles */
    .dko-funnel .dko-progress__list::before {
        content: "";
        position: absolute;
        top: 16px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: rgba(41, 40, 39, 0.18);
        z-index: 0;
    }
    /* Hide existing chunky chevron pills */
    .dko-funnel .dko-progress__chevron,
    .dko-progress .dko-progress__list .dko-progress__chevron {
        display: none !important;
    }
    /* Step pill → numbered chip + tiny label */
    .dko-funnel .dko-progress__item,
    .dko-progress .dko-progress__list .dko-progress__item {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        padding: 0 4px;
        background: none !important;
        opacity: 1;
        color: var(--dko-black);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        font-size: 0;            /* hide inner span text node on mobile */
        line-height: 1.2;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    /* Hide the verbose desktop label, show short version via data-short */
    .dko-funnel .dko-progress__item .dko-progress__label {
        display: none;
    }
    .dko-funnel .dko-progress__item::after {
        content: attr(data-short);
        display: block;
        width: 100%;
        max-width: 100%;
        font-size: 9px;
        font-family: var(--dko-font-syncopate);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0;
        color: var(--dko-black);
        line-height: 1.2;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
        padding: 0 2px;
        box-sizing: border-box;
    }
    .dko-funnel .dko-progress__item::before {
        counter-increment: dko-step;
        content: counter(dko-step);
        display: block;
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 14px;
        font-family: var(--dko-font-syncopate);
        font-weight: 700;
        background: var(--dko-lightgrey, #F0ECE9);
        color: var(--dko-black);
        border-radius: 50%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
        text-align: center;
        transition: transform 0.2s ease;
    }
    .dko-funnel .dko-progress__item:not(.dko-progress__item--active):not(.dko-progress__item--done) {
        opacity: 0.55;
    }
    .dko-funnel .dko-progress__item--done::before {
        background: var(--dko-peer, #C6B979);
        color: var(--dko-black);
    }
    .dko-funnel .dko-progress__item--active::before {
        background: var(--dko-wortel, #EF7150);
        color: var(--dko-white, #fff);
        transform: scale(1.18);
        box-shadow: 0 4px 10px rgba(239, 113, 80, 0.45);
    }
    .dko-funnel .dko-progress__item--active {
        opacity: 1;
    }
    .dko-funnel .dko-progress__item--active::after {
        font-weight: 700;
    }
    .dko-funnel .dko-progress__item + .dko-progress__item::before {
        left: auto;
        top: auto;
        transform: none;
    }
}

/* Even tighter spacing on phones */
@media screen and (max-width: 480px) {
    .dko-funnel .dko-progress__item::after { font-size: 9px; letter-spacing: 0; }
    .dko-funnel .dko-progress__item::before { width: 28px; height: 28px; line-height: 28px; font-size: 13px; }
    .dko-funnel .dko-progress__list::before { top: 14px; left: 14%; right: 14%; }
}

/* Popup must always cover the site header. Popups are reparented to <body>
   by funnel.js so no ancestor stacking context can constrain them; here we
   pin the z-index at the int32 max so any other fixed/sticky chrome loses. */
.dko-popup,
.dko-maatwerk-popup {
    z-index: 2147483647 !important;
}
.dko-popup .dko-popup__close,
.dko-maatwerk-popup .dko-maatwerk-popup__close {
    z-index: 2147483647 !important;
}

/* Popup: keep close button visible on mobile (popup is reparented to <body> by JS) */
@media screen and (max-width: 1024px) {
    .dko-popup .dko-popup__content {
        max-width: 100%;
        width: 100%;
        max-height: 100vh;
        max-height: 100dvh;
        height: 100dvh;
        clip-path: none;
        padding: 24px 20px 110px 20px;
        gap: 24px;
    }
    .dko-popup .dko-popup__image {
        height: 200px;
    }
    .dko-popup .dko-popup__close {
        position: fixed;
        top: max(12px, env(safe-area-inset-top, 12px));
        right: max(12px, env(safe-area-inset-right, 12px));
        width: 44px;
        height: 44px;
        padding: 0;
        background: var(--dko-white, #fff);
        border: 1px solid rgba(41, 40, 39, 0.12);
        border-radius: 50%;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
        font-size: 28px;
        line-height: 42px;
        text-align: center;
    }
    .dko-popup .dko-popup__close:focus-visible {
        outline: 3px solid var(--dko-wortel, #EF7150);
        outline-offset: 2px;
    }
    .dko-popup .dko-popup__add {
        width: 100%;
        text-align: center;
    }
}

/* Maatwerk popup: same close-button treatment on mobile */
@media screen and (max-width: 1024px) {
    .dko-maatwerk-popup .dko-maatwerk-popup__close {
        position: fixed;
        top: max(12px, env(safe-area-inset-top, 12px));
        right: max(12px, env(safe-area-inset-right, 12px));
        width: 44px;
        height: 44px;
        background: var(--dko-white, #fff);
        border: 1px solid rgba(41, 40, 39, 0.12);
        border-radius: 50%;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    }
}

/* Lock body scroll while popup open so the underlying page can't scroll
   beneath the modal (covers the case where iOS shows the address bar). */
body.dko-popup-open {
    overflow: hidden;
}

/* Hide WhatsApp floating chat while a funnel popup is open.
   Body class toggled by funnel.js openPopup/closePopup. */
body.dko-popup-open #qlwapp {
    display: none !important;
}