/* ==========================================================================
   Premium Member badge & CTA – top blue bar (header__top)
   Huisstijl:
     - blauw (topbar)   : #2ba6cb
     - accent (roze)    : #ff0461
     - donkerblauw      : #005c86
     - goud (ster)      : #f5c518
   ========================================================================== */

/* Zorg dat de topbar ook op mobiel zichtbaar is
   (overrulet de @media (max-width:767px) regel uit style.css) */
.header .header__top.header__top--withpremium {
    display: block !important;
}

.header__top--area {
    align-items: center;
}

/* --- Rechterkant: Premium label of CTA --- */
.header__top--premium {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

/* Premium Member badge (witte pil met blauwe tekst en gele ster) */
.premium-member-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #005c86;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.premium-member-badge .premium-star {
    color: #f5c518;
    font-size: 14px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
.premium-member-badge .premium-label {
    color: #005c86;
}

/* Rode CTA-knop voor niet-leden (in huisstijl-accent) */
.premium-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff0461;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 7px 16px;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(255, 4, 97, 0.35);
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.premium-cta-btn i {
    color: #f5c518;
    font-size: 14px;
}
.premium-cta-btn:hover,
.premium-cta-btn:focus {
    background: #d9034f;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(255, 4, 97, 0.45);
    transform: translateY(-1px);
    text-decoration: none !important;
}

/* --- Mobiele weergave --- */
@media (max-width: 767px) {
    .header__top--withpremium {
        padding: 6px 0;
    }
    .header__top--area {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }
    .header__top--left,
    .header__top--premium {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .header__top--left ul {
        display: flex;
        justify-content: center;
        gap: 4px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .premium-member-badge,
    .premium-cta-btn {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* Tablets / kleine desktops */
@media (min-width: 768px) and (max-width: 991px) {
    .header__top--area {
        align-items: center;
    }
    .premium-member-badge,
    .premium-cta-btn {
        font-size: 12px;
    }
}
