@font-face {
    font-family: Outfit;
    src: url('/fonts/Outfit/Outfit-VariableFont_wght.ttf') format(truetype);
    font-weight: 100 900;
    font-style: normal
}

body {
    margin: 0;
    padding: 0;
    font-family: Outfit, sans-serif;
    background-color: #f5f5f5
}

.bold {
    font-weight: 500
}

.semibold {
    font-weight: 600
}

.content {
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    padding-bottom: 48px
}

.two-col {
    display: flex;
    max-width: 1280px;
    /*max-width: 95svw;*/
    margin: auto;
    flex-direction: row
}

.banner {
    height: 260px;
    background: linear-gradient(270deg, #005E29 0%, #00A248 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 24px;
    border-radius: 40px
}

.banner > p > span.bold {
    font-size: 40px
}

.banner > p {
    width: 716px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column
}

.column-headers {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: auto;
    gap: 2rem;
    padding: 20px 0
}

.h-col-left {
    width: 66%
}

.h-col-left > p {
    max-width: 454px;
    margin: 0
}

.h-col-right {
    width: 34%;
    display: flex;
    justify-content: flex-start;
    align-content: flex-end
}

.h-col-right > p {
    margin-top: auto;
    margin-bottom: 0
}

.step-content {
    display: none
}

.step-content.active {
    display: block
}

.two-col {
    gap: 2rem;
    width: 100%
}

.two-col-left {
    width: 66%
}

.two-col-right {
    width: 34%
}

.step-body {
}

.step-body-left {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-content: center;
    position: relative;

}

.step-body-left > p {
    width: 454px
}

.step-body-right {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.product-selector {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    background-color: #FFF;
    border-radius: 32px
}

.products-wrapper {
    position: relative;
    min-height: 200px; /* voorkomt jump tijdens laden */
    display: flex;
    gap:20px;
    flex-direction: column;
}

/* Base skeleton animation */
.skeleton-box,
.skeleton-line,
.skeleton-circle {
    position: relative;
    overflow: hidden;
    background: #e6e6e6;
}

.skeleton-box::after,
.skeleton-line::after,
.skeleton-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.6),
            transparent
    );
    animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Card-specific sizes */
.product-selector.skeleton {
    pointer-events: none;
    align-items: flex-start;
}

.product-selector-media.skeleton-box {
    width: 165px;
    height: 165px;
    border-radius: 16px;
}

.skeleton-line.title {
    width: 216px;
    height: 20px;
    margin-top: 16px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.skeleton-line.text {
    width: 90%;
    height: 14px;
    margin-bottom: 8px;
    border-radius: 6px;
}

.skeleton-line.text.short {
    width: 500px;
}

.skeleton-line.price {
    width: 80px;
    height: 18px;
    border-radius: 8px;
}

.skeleton-button-group {
    display: flex;
    gap: 8px;
}

.skeleton-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}


.products-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10;
}


.product-selector > .product-selector-textcontent {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;

}

.product-selector > .product-selector-textcontent > p {
    margin: 0
}

.product-selector > .product-selector-media {
    height: fit-content;
    aspect-ratio: 1/1
}

.product-selector > .product-selector-media > img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 165px;
    border-radius: 20px
}

.product-selector-controls {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-selector{
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-price {
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px
}

.product-amount {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    width: fit-content;
    background-color: #F1F1F1;
    padding: 4px;
    border-radius: 12px;
    cursor: pointer;
}

.product-amount-button {
    width: 40px;
    height: 40px;
    background-color: #6D0063;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;

    &.disabled {
        background-color: #fff;
        color: #000;
        pointer-events: none
    }

    &:hover{
        background-color: #95167c;
        cursor: pointer
    }
}


.product-amount-button.loading{
    pointer-events: none;
    background-color: #ccc;
    color: #666;
}

.shopping-cart {
    padding: 24px;
    background-color: #fff;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.shopping-cart-container {
    position: sticky;
}

/* container */
.shopping-cart-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

/* overlay */
.shopping-cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 10;
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* spinner */
.shopping-cart-overlay::after {
    content: '';
    width: 28px;
    height: 28px;
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-top-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* loading state */
.shopping-cart-container.loading .shopping-cart-overlay {
    opacity: 1;
    filter: grayscale(0.8);
    pointer-events: all;
}

/* animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.shopping-cart-title {
    font-weight: 500;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px
}

.shopping-cart-item {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center
}

.shopping-cart-total {
    background: linear-gradient(270deg, #005E29 0%, #019a44 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 4px 24px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px
}

.benefits {
    border-radius: 32px;
    background-color: #fff;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 13px
}

.benefit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.benefit > p {
    display: flex;
    flex-direction: row;
    margin: 0;
    gap: 4px;
    align-items: center;
}

.benefit > p > svg {
    border: 1px solid #6D0063;
    border-radius: 100px;
    stroke: #6D0063
}

.benefit > p > a {
    text-decoration: underline;
    color: #000
}

.veilig-online-betalen-label {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center
}

.time-remaining {
    background-color: #fff;
    border-radius: 32px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 25px
}

.time-remaining-media > img {
    object-fit: cover;
    width: fit-content;
    border-radius: 20px
}

.time-remaining-textcontent {
    padding: 28px
}

.next-step-button {
    background-color: #7A0062;
    color: #fff;
    margin-right: 0;
    padding: 12px 24px;
    border-radius: 61px;
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: flex-end;
    justify-content: flex-end;
    transition: all 0.2s ease-in-out;
    width: fit-content;
    height: 44px;
}

.next-step-button:first-of-type{
    display: none;
}

.previous-step-button {
    background-color: transparent;
    color: #7A0062;
    padding: 8px 24px;
    border-radius: 61px;
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: flex-start;
    justify-content: flex-start;
    transition: all 0.2s ease-in-out;
    width: fit-content;
    border: 2px solid #7A0062;
    /*height: 44px !important;*/

}

.previous-step-button.disabled{
    opacity: 0.3;
    pointer-events: none;
    filter: grayscale(0.8);
}

.next-step-button:hover {
    background-color: #95167c;
    cursor: pointer
}

.step-navigation-buttons{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-top: 32px;
    gap: 16px;
}

* {
    box-sizing: border-box
}

fieldset {
    border: 0;
    padding: 0
}

legend {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px
}

.form-group {
    width: 100%
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px
}

.form-field {
    flex: 1;
    min-width: 200px
}

.password-notice{
    font-size: 12px;
    color: #7a7a7a;
    margin-top: 6px
}

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #000
}

.form-field select {
    width: 100%;
    height: 48px; /* Pas dit aan naar de exacte hoogte van je input velden */
    padding: 0 40px 0 16px; /* Extra padding rechts voor het pijltje */
    background-color: #f3f3f3; /* Het lichtgrijs uit je screenshot, pas de hex-code aan indien nodig */
    border: 2px solid transparent; /* Transparante border voorkomt verspringing bij focus */
    border-radius: 12px; /* De flinke afronding van de andere velden */
    font-family: inherit;
    font-size: 1rem;
    color: inherit;
    box-sizing: border-box;
    cursor: pointer;

    /* Verwijdert de standaard browser styling */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Custom SVG pijltje via background-image */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* Voor als je op het veld klikt (match dit met je inputs) */
.form-field select:focus {
    outline: none;
    background-color: #e9e9e9; /* Net iets donkerder grijs bij focus, als voorbeeld */
}

input[type=text], input[type=email], input[type=date] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #dcdcdc;
    padding: 10px 0;
    font-size: 16px;
    background: transparent;
    outline: none;
    transition: border-color 0.2s ease
}

input::placeholder {
    color: #b5b5b5
}

input:focus {
    border-bottom-color: #000
}

label::after {
    content: ""
}

label:has(+input[required])::after {
    content: " *";
    color: #000
}

.radio-group {
    display: flex;
    flex-direction: column;
    margin-top: 8px
}

.form-row:first-of-type {
    display: flex;
    flex-direction: column;
    gap: 0
}

.form-row:first-of-type > p {
    margin: 8px 0 0 0
}

.radio-option {
    font-size: 16px;
    cursor: pointer
}

.radio-option input {
    margin-right: 6px
}

.form-row .form-field:nth-child(1) {
    flex: 2;
    width: 100%;
}

.form-row .form-field:nth-child(2), .form-row .form-field:nth-child(3) {
    flex: 1
}

a{
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 16px
    }

    .logo-bg{
        margin-left: 20px
    }

    legend {
        font-size: 16px
    }

    .skeleton-line{
        max-width: 50svw;
    }

    .footer-menus{
        flex-direction: column !important;
        gap: 24px;
    }

    .steps-mobile{
        max-width: 98svw !important;
    }

    .footer{
        flex-direction: column;
    }

    .footer-info{
        max-width: 90svw;
        width: 100%;
        text-align: center;
        align-items: center;
    }
}

.form {
    /*padding: 20px;*/
    /*background-color: #FFF;*/
    /*border-radius: 32px*/
}

.form ul {
    margin: 0
}

.hoofdboeker-notice {
    background-color: #FFF0E3;
    display: flex;
    flex-direction: column;
    /*padding: 20px;*/
    font-weight: 300;
    border-radius: 24px;
    color: #894000
}

.hoofdboeker-notice-title {
    margin: 5px;
    font-weight: 500;
    color: #894000;
    display: flex;
    align-items: center;
    gap: 8px
}

.hoofdboeker-notice > ul > li {
    color: #894000
}

.summary-card {
    padding: 32px
}

.summary-card h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 32px
}

.summary-content {
    display: flex;
    align-items: flex-start;
    gap: 48px
}

.summary-list {
    flex: 1
}

.summary-row {
    display: grid;
    grid-template-columns:180px 1fr;
    margin-bottom: 16px
}

.summary-row .label {
    font-weight: 600;
    margin: 0
}

.summary-row .value {
    margin: 0;
    color: #7a7a7a
}

.summary-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #ededed;
    flex-shrink: 0
}

@media (max-width: 768px) {
    .summary-content {
        flex-direction: column;
        gap: 32px
    }

    .summary-row {
        grid-template-columns:1fr;
        gap: 4px
    }

    .summary-avatar {
        align-self: center
    }
}

.automatische-incasso-notice {
    max-width: 736px
}

.iban-field {
    border: 2px solid #ccc;
    padding: 6px 20px;
    display: flex
}

.iban-input {
    flex-grow: 1
}

.payment-method-option, .voorwaarden-option {
    border: 2px solid #ccc;
    padding: 20px;
    display: flex;
    gap: 8px;
    align-items: center
}

.footer-container {
    background: linear-gradient(270deg, #005E29 0%, #00A248 100%)
}

.footer-menus {
    display: flex;
    flex-direction: row;
    gap: 48px
}

.footer-info p {
    color: white;
    font-weight: 300
}

.footer-info > p:first-of-type {
    font-weight: 400
}

.footer {
    display: flex;
    padding: 2rem;
    max-width: 1280px;
    margin: auto;
    justify-content: space-evenly
}

.footer p, a, li {
    text-decoration: none;
    color: #e3e3e3;
    transition: all 0.1s ease-in-out;
}



.footer-menu > li{
    list-style-type: none;
    margin-left: -40px !important;
}



.footer a:hover {
    color: white
}

.footer-menu-title {
    font-weight: 600;
    font-size: 20px;
    color: white !important
}

.form {
    color: #1a1a1a
}

.hoofdboeker-notice-wrapper{
    border-top-right-radius: 32px;
    border-top-left-radius: 32px;
    background-color: white;
    padding:20px 20px 0 20px;
}

.hoofdboeker-notice {
    background: #fff4eb;
    border-radius: 16px;
    padding: 20px 24px;
    /*margin-bottom: 32px*/
}

.hoofdboeker-notice-title {
    font-weight: 600;
    margin-bottom: 8px
}

.hoofdboeker-notice ul {
    padding-left: 18px;
    margin: 0
}

.hoofdboeker-notice li {
    margin-bottom: 6px;
    font-size: 14px
}

.form-group {
    border: none;
    padding: 0
}

.form-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

.form-row:has(.radio-group), .form-row:has(input[type=date]), .form-row:has(#street), .form-row:has(#email), .form-row:has(#email-confirmation) {
    grid-template-columns:1fr
}

.form-field label, .form-row > p {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px
}

label::after {
    content: ""
}

label[for]:has(+input[required])::after {
    content: " *";
    color: #e0004d
}

.form-field input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: none;
    background: #f3f3f3;
    font-size: 15px;
    outline: none;
    transition: box-shadow 0.2s ease, background 0.2s ease
}

.form-field input::placeholder {
    color: #9a9a9a
}

.form-field input:focus {
    background: #fff;
    box-shadow: 0 0 0 2px #007c37
}

.radio-group {
    display: flex;
    /*gap: 24px*/
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    cursor: pointer
}

.radio-option input[type=radio] {
    accent-color: #007c37;
    width: 16px;
    height: 16px
}

input[type=date] {
    padding-right: 48px
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns:1fr;
        gap: 16px
    }
}

.summary-card {
    background: #fff;
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 32px
}

.summary-content {
    position: relative
}

.summary-list {
    display: flex;
    flex-direction: column
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    padding: 16px 20px;
    margin: 0;
    font-size: 15px
}

.summary-row:nth-child(even) {
    background: #f5f5f5
}

.summary-row .label {
    margin: 0;
    color: #5a5a5a;
    font-weight: 500
}

.summary-row .value {
    margin: 0;
    font-weight: 500;
    color: #111;
    text-align: right
}

.summary-row--avatar {
    padding-right: 72px;
    position: relative
}

.summary-avatar {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddd
}

.summary-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.next-step-button svg {
    width: 20px;
    height: 20px
}

.steps-mobile {
    display: none;
}

.controls-mobile {
    display: none;
}

/* Container voor de dynamische formulieren */
.form-container {
    display: flex;
    flex-direction: column;
    /*gap: 24px; !* Ruimte tussen de formulieren *!*/
}

/* De 'kaart' styling per abonnee */
.subscriber-card {
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: none !important;
    width: 100%;
}

.subscriber-card:nth-of-type(2) {
    margin-top: 0 !important;
    border-radius: 0 0 32px 32px !important;
}

.subscriber-card:not(:first-of-type) {
    margin-top: 24px;
    border-radius: 32px;
}

.subscriber-card:hover {
    /*border-color: #cbd5e1;*/
}

/* Titel boven elk formulier */
.subscriber-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscriber-card.collapsed .subscriber-header {
    border-bottom: none;
    /*margin-bottom: 0;*/
    /*padding-bottom: 0;*/
}

.subscriber-info{
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Badge voor de index (bijv. de '1' in een rondje) */
.subscriber-index {
    background: #007c37;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* De basis van de kaart */
.subscriber-card {
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

/* De header wordt klikbaar */
.subscriber-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between; /* Zorgt dat het icoontje rechts staat */
    align-items: center;
    padding: 15px 20px;
    /*background-color: #f8fafc;*/
}

/* Het icoontje (pijltje) */
.subscriber-header::after {
    /*content: '▲'; !* Of een SVG icon *!*/
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

/* Als de kaart is ingeklapt */
.subscriber-card.collapsed .subscriber-header::after {
    transform: rotate(180deg);
}

/*.subscriber-card.collapsed fieldset,*/
/*.subscriber-card.collapsed p.semibold {*/
/*    display: none;*/
/*}*/

.subscriber-card.collapsed {
    padding-bottom: 0;
}

/* =========================================
   Container
   ========================================= */

.form-container {
    display: flex;
    flex-direction: column;
}

/* =========================================
   Subscriber card
   ========================================= */

.subscriber-card {
    background: #ffffff;
    padding: 24px;
    margin-bottom: 16px;
    border-radius: 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

/* Specifieke radius-regels behouden */
.subscriber-card:nth-of-type(2) {
    margin-top: 0 !important;
    border-radius: 0 0 32px 32px !important;
}

.subscriber-card:not(:first-of-type) {
    margin-top: 24px;
}

/* =========================================
   Header (klikbaar)
   ========================================= */

.subscriber-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    cursor: pointer;

    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;

    border-bottom: 1px solid #f1f5f9;
}

/* Border weg bij collapsed */
.subscriber-card.collapsed .subscriber-header {
    border-bottom: none;
    padding-bottom: 0;
}

/* =========================================
   Subscriber info
   ========================================= */

.subscriber-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.subscriber-index {
    background: #007c37;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* =========================================
   Chevron
   ========================================= */

.chevron-icon {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.subscriber-card.collapsed .chevron-icon {
    transform: rotate(180deg);
}

/* =========================================
   EXPAND / COLLAPSE ANIMATIE
   ========================================= */

.subscriber-content {
    display: grid;
    grid-template-rows: 1fr;
    opacity: 1;
    transition:
            grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.25s ease;
}

/* Ingeklapt */
.subscriber-card.collapsed .subscriber-content {
    grid-template-rows: 0fr;
    opacity: 0;
}

/* Inner wrapper */
.subscriber-content-inner {
    overflow: hidden;
    padding: 0 20px 20px 20px;
}

/* =========================================
   Form fixes (GEEN display:none!)
   ========================================= */

.subscriber-content fieldset {
    margin: 0;
    /*padding: 20px 0;*/
    border: none;
}

.subscriber-content p.semibold {
    margin-bottom: 12px;
}

/* =========================================
   Optionele fade bij openen
   ========================================= */

.subscriber-card:not(.collapsed) .subscriber-content-inner {
    animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.subscriber-actions{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.next-subscriber-btn{
    background-color: #7A0062;
    color: #fff;
    padding: 12px 24px;
    border-radius: 61px;
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: flex-end;
    justify-content: flex-end;
    transition: all 0.2s ease-in-out;
    width: fit-content;
    height: 44px;
    font-family: "Outfit", sans-serif;
    font-size: 16px
}

@media (max-width: 768px) {



    .column-headers {
        display: none;
    }

    .controls-mobile {
        display: flex;
        flex-direction: row;
        width: 100%;
        position: sticky;
        bottom: 0;
        height: 80px;
        background: #fff;
        box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .controls-mobile-buttons {
        display: flex;
        gap: 16px;
    }

    .controls-mobile-buttons > a{
        height: 100% !important;
    }

    .steps {
        display: none;
    }

    .steps-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        max-width: 93svw;
        width: 100%;
        margin: 0 auto 15px auto;
    }

    .step-mobile {
        /*border: 1px solid #6D0063;*/
        border-radius: 16px;
        padding: 12px;
        width: 100%;
        /*margin: auto;*/
    }

    .step-mobile.active {
        border: 1px solid #6D0063;
    }

    .step-mobile.completed {
        background-color: #6D0063;
        color: #fff;
    }

    .step-mobile.completed > .step-id-mobile {
        background-color: #fff;
        color: #000;
    }

    .step-id-mobile {
        background: #6D0063;
        /*width: fit-content;*/
        width: 30px;
        height: 30px;
        color: #fff;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .step-label-mobile {
        font-size: 14px;
        margin: 0;
        padding-top: 4px;
    }

    .banner > p > span.bold {
        font-size: 28px
    }

    .banner > p {
        width: 100%;
        padding: 0 16px;
        font-size: 16px
    }

    .two-col {
        display: flex;
        flex-direction: column !important
    }

    .two-col-left, .two-col-right {
        width: 100%;
        max-width: 93svw;
        margin: 0 auto
    }

    .column-headers {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px
    }

    .h-col-left, .h-col-right {
        width: 100%
    }

    .step-body-left, .step-body-right {
        max-width: 96svw;
        margin: 0 auto
    }

    .content{
        padding-bottom: 0;
    }


    .summary-card{
        max-width: 98svw;
        width: 100%;
    }
}

/* ==============================
   Form fields
   ============================== */

.form-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ==============================
   Error styling
   ============================== */

.field-error {
    margin-top: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #dc2626;
}

/* input highlight */
.input-error {
    border-color: #dc2626;
}

/* ==============================
   Card mag "uitrekken" bij errors
   ============================== */

.subscriber-card.has-errors {
    padding-bottom: 32px;
}

.next-step-button.disabled{
    opacity: 0.3;
    pointer-events: none;
    filter: grayscale(0.8);
}

.summary-card{
    background-color: unset;
    display:flex;
    gap: 24px;
    flex-direction: column;
    padding-top:0
}

.summary-subscriber{
    background-color: #fff;
    padding: 20px;
    border-radius:25px
}



.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal {
    background: #ffffff;
    padding: 24px 30px;
    border-radius: 24px;
    max-width: 700px;
    width: 90%;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal p {
    margin-bottom: 20px;
    font-size: 16px;
}

.modal-title{
    font-size: 24px !important;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
}

#modal-close-button {
    padding: 10px 18px;
    border: none;
    border-radius: 24px;
    background: #6D0063;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
}

#modal-close-button:hover {
    background: #7A0062;
}


@media (max-width: 768px) {

    /* steps mobile */

    .steps-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 20px auto;
        padding: 0 16px;
    }

    .step-mobile {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px;
        border-radius: 16px;
        border: 2px solid transparent;
        background: #fff;
    }

    .step-mobile.active {
        border-color: #83007c;
    }

    .step-mobile.completed p {
        color: #fff;
    }

    .step-id-mobile {
        width: 40px;
        height: 40px;
        margin: 0;
        border-radius: 50%;
        background: #83007c;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .step-label-mobile {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        color: #111;
        line-height: 1.2;
    }

    /* product selector */

    .product-selector {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .product-selector > .product-selector-media > img {
        width: 100%;
    }

    .product-selector-controls {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .product-selector > .product-selector-textcontent {
        padding: 20px;
    }

    .product-selector > .product-selector-textcontent > p {
        align-self: center;
    }

    .step-navigation-buttons {
        justify-content: center;
    }

    /* footer */

    .footer {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .footer-info {
        width: 100%;
    }

    .footer-menus {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .footer-menu-1,
    .footer-menu-2 {
        width: 100%;
    }

    .footer-menu {
        margin: 0;
        list-style: none;
    }

    .tile-grid.w2{
        flex-direction: column;
        max-width: 95svw;
    }
}

/* time remaining */

.time-remaining {
    margin-top: 30px;
}

.time-remaining-media {
    padding: 20px;
}

.time-remaining-media > img {
    width: 100%;
}


.bb-subscriber-card{
    border-radius: 32px !important;
    border: none !important;
    padding: 30px 30px !important;
}

input{
    border: none !important;
}