.prijzen-tabs-block {
    padding: 20px 35px 0px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tab navigatie */
.tabs-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
}

.tab-button {
    background: #4A6B4D;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
}

.tab-button:hover {
    background: #5A7B5D;
    transform: translateY(-2px);
}

.tab-button.active {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.tab-title {
    display: flex;
    text-align: start;
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
    font-family: 'Josefin Sans', sans-serif;
}

.tab-extra {
    text-align: start;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Josefin Sans', sans-serif;
}

/* Tab content */
.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Prijskaarten grid */
.prijskaarten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* Standaard kaart styling */
.standard-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Prijskaart - Nieuwe dark design */
.prijskaart {
    background: #2D2D2D;
    border-radius: 20px;
    padding: 50px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    min-height: 450px;
}

.prijskaart:hover {
    transform: translateY(-5px) rotate(0.4deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.meest-gekozen-badge {
    width: 65%;
    text-align: center;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #C9A24D;
    color: #fff;
    padding: 8px 8px;
    border-radius: 20px;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Josefin Sans', sans-serif;
}

/* Prijskaart header */
.prijskaart-header {
    text-align: start;
    margin: 25px 0;
}

.kaart-titel {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.kaart-subtitel {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
    line-height: 20px;
}

/* Prijs sectie */
.prijskaart-prijs {
    text-align: start;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.prijs {
    font-size: 40px;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
    line-height: 1;
}

.frequentie {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 20px;
    color: #fff;
    line-height: 1;
}

/* Divider */
.prijskaart-divider {
    width: 100%;
    height: 1px;
    background: #fff;
    margin: 25px 0;
}

/* Features lijst */
.prijskaart-features {
    list-style: none;
    padding: 0;
    margin: 0 0 80px 0;
    flex-grow: 1;
}

.prijskaart-features li {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 20px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.prijskaart-features li:before {
    content: "•";
    color: #5A7B5D;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -2px;
}

/* CTA Button */
.prijskaart-cta {
    margin: 0 auto;
}

.cta-button-prijs-kaart {
    display: block;
    width: 100%;
    background: #fff;
    color: #5A7B5D;
    text-align: center;
    padding: 10px 38px;
    border: 2px solid #ffffff00;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Josefin Sans', sans-serif;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button-prijs-kaart:hover {
    background: transparent;
    border: 2px solid #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 123, 93, 0.4);
}

/* Responsive */
@media (max-width: 1300px) {
    .tabs-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .tab-button {
        height: 80px;
    }

    .prijskaarten-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .standard-card {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .prijskaarten-grid {
        grid-template-columns: 1fr;
    }

    .standard-card {
        grid-template-columns: 1fr;
    }

    .meest-gekozen-badge {
        font-size: 22px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .prijzen-tabs-block {
        padding: 40px 15px;
    }

    .tabs-nav {
        grid-template-columns: 1fr;
        width: 90%;
        margin: 0 auto 30px;
    }

    .tab-button {
        height: 71px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .prijskaart {
        padding: 30px 25px;
        min-height: 400px;
        width: 90%;
        margin: 0 auto 20px;
    }

    .prijskaarten-grid {
        gap: 50px;
    }

    .kaart-titel {
        font-size: 20px;
    }

    .prijs {
        font-size: 42px;
    }

    .standard-card {
        gap: 20px;
    }
}

@media (max-width: 399px) {
    .tabs-nav {
        width: 95%;
    }

    .prijskaart {
        width: 95%;
    }
}