/* ==========================================================================
   MODALS.CSS - UNIFIED MODAL ARCHITECTURE
   De centrale plek voor overlays, z-indexes en scroll-gedrag.
   ========================================================================== */

/* --- 1. DE BASIS CONTAINER (OVERLAY) --- */
/* Dit is de viewport-wrapper die zorgt voor positionering en scrollen */
.overlay {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    
    /* Flex-column + margin:auto op het kind zorgt voor perfecte centrering 
       die "breekt" naar scrollen als het scherm te klein is. */
    display: flex;
    flex-direction: column; 
    
    /* Hier zit de scrollbar */
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch;
    
    /* Visuele basis */
    background-color: rgba(0, 0, 0, 0.6); /* Iets donkerder voor beter contrast */
    padding: 20px 10px; /* Veilige marge op mobiel */
    box-sizing: border-box;
    
    /* Animatie statussen */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    pointer-events: none;
    
    /* Standaard Z-Index (Login/Algemeen) */
    z-index: 3000;
}

/* Actieve staat */
.overlay--visible {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    pointer-events: auto;
}

/* --- 2. Z-INDEX LAGEN (Layers) --- */
/* Gebruik deze classes op de .overlay div om de laag te bepalen */

/* Login & Standaard modals */
.overlay--layer-default {
    z-index: 3000;
}

/* Premium / Lock overlays (moeten over login kunnen vallen) */
.overlay--layer-premium,
#premium-lock-overlay { 
    z-index: 4000;
}

/* Toasts, Success meldingen & Info panelen */
.overlay--layer-top,
.notification-modal {
    z-index: 99999;
}

/* --- 3. HET MODAL VENSTER (De "Shell") --- */
/* De .modal-dialog is de kaart zelf. */
.modal-dialog,
.split-card-wrapper { /* Support voor bestaande classes */
    position: relative;
    
    /* DE MAGIE: margin: auto in een flex-column container */
    margin: auto; 
    
    width: 100%;
    max-width: 500px; /* Standaard mobiel/tablet breedte */
    
    /* Reset hoogtes zodat inhoud de lengte bepaalt */
    height: auto;
    min-height: 0;
    flex-shrink: 0; /* Voorkom dat hij geplet wordt */
    
    background: #fff;
    border-radius: 60px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    
    /* Zorg dat de kaart zelf niet scrollt, maar de overlay */
    
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.overlay--visible .modal-dialog,
.overlay--visible .split-card-wrapper {
    transform: scale(1);
}

/* --- 4. VARIANTEN (Modifiers) --- */

/* Variant: Breed (voor abonnementen/prijzen) */
@media (min-width: 900px) {
    .modal-dialog--wide,
    .split-card-wrapper {
        max-width: 950px;
    }
}

/* Variant: Blob (Transparante achtergrond voor custom shapes) */
.modal-dialog--blob {
   
    box-shadow: none;
    overflow: hidden; /* Blob moet vaak clippen */
    border-radius: 60px; /* Matcht vaak met blob design */
}

/* Mobiele fix voor Blob (fullscreen gevoel) */
@media (max-width: 767px) {
    /* 1. Haal de padding van de donkere achtergrond af */
    .overlay {
        padding: 0 !important;
        /* Zorg dat de startpositie altijd bovenaan is */
        justify-content: flex-start; 
    }
    /* 2. Maak de kaart zelf schermvullend */
    .modal-dialog,
    .split-card-wrapper {
        margin: 0 !important;       /* Geen marge, plak tegen de rand */
        width: 100% !important;     /* Volle breedte */
        max-width: none !important; /* Geen limiet op breedte */
        
        min-height: 100%;           /* Minimaal zo hoog als het scherm */
        height: auto;               /* Maar mag groeien als inhoud langer is */
        
        border-radius: 0 !important; /* Geen ronde hoeken op mobiel */
        box-shadow: none !important; /* Schaduw is niet nodig bij fullscreen */
        
        /* Zorg dat de flex-layout behouden blijft */
        display: flex;
        flex-direction: column;
    }

    /* 3. Specifiek voor de Blob variant: Zorg dat content ook vult */
    .modal-dialog--blob {
        min-height: 100vh; /* Forceer viewport hoogte */
        min-height: 100dvh; /* Voor mobiele browsers met adresbalken */
    }
    .modal-back-btn{
        display: none;
    
    }
}   

/* ==========================================================================
   VARIANT: LOGIN BLOB MODAL
   Specifieke afmetingen voor de inlog-modal (moet breder zijn).
   ========================================================================== */
.modal-dialog--blob {
    /* Override de standaard 500px breedte */
    max-width: 900px !important; 
    
    /* Zorg dat hij op desktop de ruimte neemt die nodig is */
    width: 100%;
    
    /* Reset achtergrond zodat de blob in gebruiker.css het werk kan doen */
    
    box-shadow: none; 
}

/* Zorg dat hij op hele grote schermen niet te breed wordt */
@media (min-width: 900px) {
    .modal-dialog--blob {
        width: auto; /* Laat de inhoud de breedte bepalen tot max-width */
    }
}

/* =========================================
   PRICING & ABONNEMENTEN STYLING
   Bestand: assets/css/pricing.css
   ========================================= */

/* --- BASIS CONTAINER --- */
.split-card-wrapper {
    width: 100%; 
    max-width: 950px; /* Voorkom dat hij te breed wordt op grote schermen */
    
    /* HOOGTE FIX: */
    height: auto;     /* Laat de inhoud de hoogte bepalen */
    min-height: 0;    /* Reset eventuele erfenis */
    
    /* POSITIE FIX (De magie): */
    margin: auto;     /* Centreert horizontaal én verticaal in de flex-overlay */
    overflow: hidden;
    position: relative; 
    z-index: 10;
    background: #fff; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.split-layout { 
    display: flex; 
    min-height: 550px; 
}

/* =========================================
   LINKER KANT (Sfeer & Info - Groen)
   ========================================= */
.layout-left {
    flex: 2;
    background-color: var(--kleur-primair); /* Fallback */
    
    /* NIEUW: Een subtiele gradient van linksboven naar rechtsonder.
       Dit maakt het minder 'plat' en geeft een premium gevoel. */
    background: linear-gradient(135deg, #6ba3ab 0%, #1a4c53 100%);
    
    color: #fff !important; 
    padding: 30px; 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    
    /* Zorg dat de noise of blob uit modals.css hier niet botst */
    overflow: hidden; 
}

/* OPTIONEEL: Een heel subtiel patroon of gloed achter de zon */
.layout-left::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Navigatie (Terug knop) */
.nav-back-btn {
    align-self: flex-start;
    background: transparent; 
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff; 
    padding: 6px 12px; 
    border-radius: 20px;
    cursor: pointer; 
    font-size: 0.85rem; 
    display: flex; 
    align-items: center; 
    gap: 6px;
    transition: background 0.2s; 
    margin-bottom: 20px;
}
.nav-back-btn:hover { background: rgba(255,255,255,0.1); }

/* Middenstuk Links */
.left-inner { 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.crown-icon-wrapper { 
    font-size: 2.5rem; 
    color: #FFC400; 
    margin-bottom: 0px; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); 
    text-align: center;
}

.left-hero-title { 
    font-family: var(--font-titel, sans-serif); 
    font-size: 2.4rem; 
    line-height: 1.1; 
    margin-bottom: 15px; 
    color: #fff !important; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

.left-desc { 
    opacity: 0.95; 
    font-size: 1.05rem; 
    margin-bottom: 30px; 
    color: #f0fdf4; 
    line-height: 1.5; 
}

/* USP Lijstje */
.usp-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
.usp-list li { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 15px; 
    font-size: 1rem; 
    font-weight: 500; 
    color: #fff; 
}
.usp-list i { 
    color: var(--kleur-accent, #FFC400); 
    background: rgba(255,255,255,0.15); 
    width: 34px; 
    height: 34px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.8rem; 
    flex-shrink: 0;
}

/* Footer Link (Gratis bieb) */
.left-footer-link {
    margin-top: auto; 
    padding-top: 20px; 
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}
.left-footer-link span { 
    opacity: 0.8; 
    display: block; 
    margin-bottom: 4px; 
    font-size: 0.8rem; 
}
.free-lib-link {
    color: #fff; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-flex; 
    align-items: center; 
    gap: 5px;
    transition: opacity 0.2s;
}
.free-lib-link:hover { opacity: 0.8; text-decoration: underline; }


/* =========================================
   RECHTER KANT (Keuze & Actie - Wit)
   ========================================= */
.layout-right { 
    flex: 3; /* 60% breedte */
    background: #fff; 
    padding: 30px 40px; 
    display: flex; 
    flex-direction: column; 
    color: #333; 
    position: relative; 
}

/* Header Row (Login & Close) */
.right-header-row {
    display: flex; 
    justify-content: flex-end;
   width: 100%;
    align-items: flex-start;
    margin-bottom: 15px;
}
.login-prompt { font-size: 0.9rem; padding-top: 5px; margin-right: auto;}
.text-muted { color: #888; }
.login-link-btn { 
    color: var(--kleur-primair, #2E7D32); 
    font-weight: 700; 
    text-decoration: none; 
    cursor: pointer; 
}
.login-link-btn:hover { text-decoration: underline; }

.close-card-btn {
    background: none; 
    border: none; 
    font-size: 2rem; 
    line-height: 0.8;
    color: #aaa; 
    cursor: pointer; 
    padding: 0 0 0 10px;
    transition: color 0.2s;
    margin-left: auto;
}


.close-card-btn:hover { color: #333; }

.choose-title { 
    font-size: 1.4rem; 
    font-weight: 700; 
    color: #1a1a1a !important; 
    margin-bottom: 20px; 
    font-family: var(--font-subtitel);
    margin: 0 0 10px
}


/* =========================================
   DE ABONNEMENT KAARTEN
   ========================================= */
.selection-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-bottom: 25px; 
}

.select-card { 
    border: 2px solid #e5e7eb; 
    border-radius: 12px; 
    padding: 15px 20px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    position: relative; 
    transition: all 0.2s; 
    background: #fff; 
}

.select-card:hover { border-color: #ccc; background: #fafafa; }
.select-card.active { 
    border-color: var(--kleur-primair, #2E7D32); 
    background: #f0fdf4; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
}

/* Radio Bolletje */
.radio-indicator { 
    width: 22px; 
    height: 22px; 
    border-radius: 50%; 
    border: 2px solid #ccc; 
    flex-shrink: 0; 
    background: #fff; 
}
.select-card.active .radio-indicator { 
    border-color: var(--kleur-primair, #2E7D32); 
    border-width: 6px; 
}

/* Logo & Tekst */
.mini-logo { 
    height: 30px; 
    width: auto; 
    vertical-align: middle; 
    margin-right: 6px; 
    object-fit: contain; 
}
.card-info { flex-grow: 1; }
.card-title-row { display: flex; align-items: center; }
.card-title-row strong { display: block; color: #333; font-size: 1.05rem; }
.card-subtitle { font-size: 0.85rem; color: #666; display: block; margin-top: 2px; }

/* Prijs Weergave */
.card-price { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-end; 
    justify-content: center; 
    font-weight: 800; 
    color: #333; 
    font-size: 1.2rem; 
    min-width: 80px; 
}
.card-price small { font-size: 0.75rem; color: #888; font-weight: normal; }
.old-price-mini { 
    font-size: 0.85rem; 
    color: #aaa; 
    text-decoration: line-through; 
    font-weight: 400; 
    line-height: 1; 
    margin-bottom: 2px; 
}

/* Badge (Beste Keuze) */
.save-tag { 
    position: absolute; 
    top: -10px; 
    right: 10px; 
    background: #FFC400; 
    color: #000; 
    font-size: 0.7rem; 
    padding: 3px 10px; 
    border-radius: 10px; 
    font-weight: 800; 
    text-transform: uppercase; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    z-index: 5; 
}

/* =========================================
   KNOPPEN & FOOTER
   ========================================= */
.btn-primary-cta { 
    width: 100%; 
    padding: 18px; 
    border-radius: 50px; 
    background: var(--kleur-primair, #2E7D32); 
    color: #fff; 
    border: none; 
    font-size: 1.15rem; 
    font-weight: 700; 
    cursor: pointer; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 10px; 
    transition: transform 0.2s, background 0.2s; 
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3); 
}
.btn-primary-cta:hover { 
    background: var(--kleur-accent, #FFC400); 
    color: #333; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(255, 196, 0, 0.4); 
}

.trial-text { 
    text-align: center; 
    font-size: 0.85rem; 
    color: #888; 
    margin-top: 12px; 
}

/* De 'of' divider */
.divider-text { 
    text-align: center; 
    margin: 15px 0; 
    position: relative; 
    height: 20px; 
}
.divider-text span { 
    background: #fff; 
    padding: 0 10px; 
    color: #ccc; 
    font-size: 0.85rem; 
    position: relative; 
    z-index: 2; 
}
.divider-text::before { 
    content: ''; 
    position: absolute; 
    top: 50%; 
    left: 0; 
    right: 0; 
    height: 1px; 
    background: #eee; 
    z-index: 1; 
}

/* Lifetime Button (Gradient) */
.lifetime-wrapper { text-align: center; margin-top: 5px; }
.btn-gradient-border { 
    position: relative; 
    background: #fff; 
    border: none; 
    border-radius: 50px; 
    padding: 2px; 
    cursor: pointer; 
    width: 100%; 
    transition: transform 0.2s; 
    background-image: linear-gradient(135deg, #a855f7, #ec4899); 
}
.btn-gradient-border:hover { transform: translateY(-1px); }

.btn-content { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 8px; 
    background: #fff; 
    border-radius: 48px; 
    padding: 12px; 
    color: #333; 
    font-weight: 700; 
    font-size: 0.95rem; 
}
.btn-gradient-border:hover .btn-content { background: #faf5ff; }

.price-pill { 
    background: #f3e8ff; 
    color: #9333ea; 
    padding: 2px 8px; 
    border-radius: 6px; 
    font-size: 0.85rem; 
    font-weight: 800; 
}

/* Kleine voorwaarden footer */
.terms-footer {
    text-align: center;
    font-size: 0.7rem;
    color: #ccc;
    margin-top: 15px; 
    border-top: 1px solid #f5f5f5; 
    padding-top: 10px;
}
.terms-footer a { color: #aaa; text-decoration: underline; }
.terms-footer a:hover { color: #888; }

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .split-layout { flex-direction: column; }
    
   .layout-left {
        /* 1. BELANGRIJKSTE FIX: Laat de inhoud eruit lopen als het moet */
        overflow: visible !important; 
        overflow-y: visible !important;
        
        /* 2. Laat de hoogte bepalen worden door de inhoud, niet door de flex-ouder */
        height: auto !important;
        flex-basis: auto !important; /* Was 0%, dit zorgde voor krimp */
        flex-grow: 0 !important; /* Niet proberen de rest van het scherm te vullen */
        
        /* 3. Zorg voor padding onderaan zodat de knoppen niet tegen de rand plakken */
        padding-bottom: 40px !important; 
        
        display: block !important; /* Soms helpt block beter dan flex op mobiel voor hoogte */
    }

    /* Zorg dat de footer zelf ook zichtbaar is */
    .left-footer-link {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        margin-top: 20px !important;
    }
    
    .mobile-divider-text {
        text-align: center;
    }
    .text-link-small-abo-wit{
        display: flex;              /* Maak er een flex-box van */
    justify-content: center;    /* Centreer alles horizontaal */
    align-items: center;        /* Centreer alles verticaal */
    width: 100%;                /* Pak de breedte */
    gap: 8px;
    }
    .nav-back-btn { 
        align-self: center; 
        margin-bottom: 10px; 
    }
    
    .left-inner { margin: 20px 0; }
    .usp-list li { justify-content: center; }
    
    .layout-right { padding: 25px 20px; }
}

/* Nieuwe subtiele linkstijl voor de modal */
.text-link-small-abo {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--kleur-primair);
    text-decoration: none;
    display: inline-flex; 
    align-items: center; 
    gap: 6px;
    margin-top: 5px;
    transition: gap 0.2s ease, color 0.2s ease;
    cursor: pointer;
}
.text-link-small-abo-wit {
    color: var(--kleur-wit);
}
.text-link-small-abo:hover { 
    gap: 10px; 
    color: var(--kleur-primair-hover, #133b42);
}

.text-link-small-abo i {
    font-size: 0.8rem;
}
/* --- Uitlijning naar onderen voor de rechterkant --- */
.layout-right {
    display: flex;
    flex-direction: column;
    min-height: 550px; /* Zorgt dat er ruimte is om naar beneden te duwen */
}

.choose-title {
    /* De 'auto' marge vreet alle beschikbare ruimte boven de titel op */
   
    font-size: 1.4rem; 
    font-weight: 700; 
    color: #1a1a1a !important; 
    margin-bottom: 20px; 
}
/* De Kroon boven de titel */
.premium-crown-icon {
    text-align: left;
    color: #FFC400;
    font-size: 2.2rem;
    margin-bottom: 5px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
    
    /* HIER ZIT DE MAGIE: */
    /* Deze regel duwt de kroon (en alles eronder) naar de bodem van de flex-container */
    margin-top: auto !important; 
}

.free-path-prompt {
    background: #f0f7f4; /* Subtiel groenige waas, straalt veiligheid uit */
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.free-path-prompt:hover {
    background: #e2f0e9;
    transform: translateX(-2px); /* Kleine beweging om aandacht te trekken */
}

.free-path-prompt .text-link-small-abo {
    margin-top: 0;
    color: var(--kleur-primair);
}

/* Witte knop voor de linkerzijde van de modal */
.btn-white-subtle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    background-color: #ffffff;
    color: var(--kleur-primair, #1A535C);
    
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid #ffffff;
    
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
}

.btn-white-subtle:hover {
    background-color: var(--kleur-accent, #FFC400);
    border-color: var(--kleur-accent, #FFC400);
    color: var(--kleur-primair);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-white-subtle i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-white-subtle:hover i {
    transform: translateX(4px);
}

/* --- 1. Gradient Fix voor Linker Kolom --- */
.layout-left {
    /* We gebruiken een iets donkerdere tint onderin (#0e2e34) voor mooi contrast */
    background: linear-gradient(160deg, #218b9a 0%, #0e2e34 100%) !important;
    position: relative; /* Nodig voor de tooltip positionering */
}

/* --- 2. Info Button & Tooltip Styling --- */
.usp-list li {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Zorg dat tekst en info-icoon uit elkaar staan */
    position: relative; /* Context voor de tooltip popup */
}

/* Het Info Icoon (i) */
.info-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem; /* Kleine i */
    font-family: monospace; /* Zorgt voor een strakke 'i' */
    cursor: help;
    transition: all 0.2s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

.info-icon-btn:hover {
    background-color: #fff;
    color: var(--kleur-primair);
    border-color: #fff;
}

/* De Tooltip Box (Verborgen tekst) */
/* De Tooltip Box (Vriendelijk & Fris) */
.tooltip-popup {
    position: absolute;
    bottom: 135%; /* Ietsje hoger */
    right: -10px; /* Iets opschuiven zodat het pijltje mooi uitkomt */
    width: 240px;
    
    /* DESIGN AANPASSING: Wit kaartje i.p.v. zwart blok */
    background-color: #ffffff;
    color: var(--kleur-primair); /* Donkergroene tekst (of #1a535c) */
    
    /* Zachtere uitstraling */
    border-radius: 12px; /* Mooie ronde hoekjes */
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Zachte schaduw voor diepte */
    border: 1px solid rgba(0,0,0,0.05); /* Heel subtiel randje */
    
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 500; /* Iets dikker voor leesbaarheid op wit */
    text-align: left;
    
    /* Animatie & Zichtbaarheid (Hetzelfde als voorheen) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    pointer-events: none;
}

/* Het Driehoekje (Moet nu ook wit zijn!) */
.tooltip-popup::after {
    content: '';
    position: absolute;
    top: 100%; /* Onderaan de popup */
    right: 16px; /* Uitlijnen met het icoontje */
    
    border-width: 8px;
    border-style: solid;
    
    /* De kleur van het pijltje aanpassen naar Wit */
    border-color: #ffffff transparent transparent transparent; 
    
    filter: drop-shadow(0 4px 4px rgba(0,0,0,0.05)); /* Subtiel schaduwtje bij het puntje */
}

/* Toon tooltip bij hover */
.info-icon-wrapper:hover .tooltip-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* ==========================================================================
   PREMIUM FEATURE LIST (ICONS)
   ========================================================================== */

.usp-list li {
    display: flex;
    align-items: center;
    gap: 15px; /* Iets meer ruimte tussen icoon en tekst */
    margin-bottom: 20px; /* Meer ademruimte */
    position: relative;
}

/* De container voor het icoon (Het rondje) */
.usp-icon-wrapper {
    width: 30px; /* Vaste breedte voor uitlijning */
    display: flex;
    justify-content: center;
    
    /* Geen achtergrond meer, puur het icoon */
    background: transparent;
    border: none;
    
    /* Goudgeel met een 'glow' */
    color: var(--kleur-accent); 
    font-size: 1.4rem; /* Lekker groot */
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5)); /* De magie: Neon gloed */
}

/* Het icoon zelf */
.usp-icon-wrapper i {
    color: var(--kleur-accent); /* De felle gele kleur */
    font-size: 1.1rem;
}

/* De tekst ernaast */
.usp-label {
    font-family: var(--font-subtitel);
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    text-align: left;
}
