/* ─────────────────────────────────────────────────────────────
   BKL Membership — Public Styles
   Brand: #CCFF02 (primary), #000 (black), #8114B0 (purple),
          #FF4291 (deep pink), #FFFFFF (white)
   ───────────────────────────────────────────────────────────── */

:root {
    --bkl-primary:     #CCFF02;
    --bkl-black:       #000000;
    --bkl-purple:      #8114B0;
    --bkl-pink:        #FF4291;
    --bkl-white:       #FFFFFF;
    --bkl-brown:       #3C2D25;
    --bkl-lime:        #C8ED33;
    --bkl-marigold:    #FFDE59;
    --bkl-font-body:   'Poppins', sans-serif;
    --bkl-radius:      12px;
    --bkl-radius-sm:   6px;
    --bkl-shadow:      0 4px 24px rgba(0,0,0,0.12);
    --bkl-transition:  0.2s ease;
}

/* ── Form Wrapper ───────────────────────────────────────────── */
.bkl-form-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 32px;
    background: var(--bkl-white);
    border-radius: var(--bkl-radius);
    box-shadow: var(--bkl-shadow);
    font-family: var(--bkl-font-body);
}

.bkl-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.bkl-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bkl-black);
    margin: 0 0 8px;
}

.bkl-form-subtitle {
    color: #666;
    margin: 0;
}

/* ── Fields ─────────────────────────────────────────────────── */
.bkl-field {
    margin-bottom: 20px;
}

.bkl-field label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--bkl-black);
    margin-bottom: 6px;
}

.bkl-field label span { color: var(--bkl-pink); }

.bkl-field input[type="text"],
.bkl-field input[type="email"],
.bkl-field input[type="password"],
.bkl-field input[type="tel"],
.bkl-field select,
.bkl-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: var(--bkl-radius-sm);
    font-family: var(--bkl-font-body);
    font-size: 0.95rem;
    transition: border-color var(--bkl-transition);
    box-sizing: border-box;
}

.bkl-field input:focus,
.bkl-field select:focus {
    outline: none;
    border-color: var(--bkl-primary);
    box-shadow: 0 0 0 3px rgba(204,255,2,0.2);
}

.bkl-field small {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-top: 4px;
}

.bkl-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .bkl-field-row { grid-template-columns: 1fr; }
    .bkl-form-wrap { padding: 24px 16px; }
}

.bkl-field--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
}

.bkl-field--checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--bkl-black);
}

.bkl-field--remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bkl-forgot-link {
    font-size: 0.875rem;
    color: var(--bkl-purple);
    text-decoration: none;
}

/* ── Plan Cards ─────────────────────────────────────────────── */
.bkl-plan-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bkl-plan-card {
    position: relative;
    cursor: pointer;
}

.bkl-plan-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.bkl-plan-inner {
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--bkl-radius-sm);
    transition: all var(--bkl-transition);
    text-align: center;
}

.bkl-plan-card input:checked + .bkl-plan-inner {
    border-color: var(--bkl-black);
    background: var(--bkl-primary);
}

.bkl-plan-name {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.bkl-plan-price {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.bkl-plan-price span {
    font-size: 0.8rem;
    font-weight: 400;
}

.bkl-plan-desc {
    font-size: 0.8rem;
    color: #555;
    margin-top: 6px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.bkl-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--bkl-radius-sm);
    font-family: var(--bkl-font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--bkl-transition);
    text-decoration: none;
    text-align: center;
}

.bkl-btn--primary {
    background: var(--bkl-primary);
    color: var(--bkl-black);
    border-color: var(--bkl-black);
}

.bkl-btn--primary:hover {
    background: var(--bkl-black);
    color: var(--bkl-primary);
}

.bkl-btn--outline {
    background: transparent;
    border-color: var(--bkl-black);
    color: var(--bkl-black);
}

.bkl-btn--full { width: 100%; display: block; }

.bkl-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── Errors ─────────────────────────────────────────────────── */
.bkl-errors {
    background: #fff0f3;
    border: 1px solid var(--bkl-pink);
    border-radius: var(--bkl-radius-sm);
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #c0003a;
}

.bkl-errors ul { margin: 0; padding-left: 20px; }
.bkl-errors li { margin: 4px 0; }

/* ── Notices ────────────────────────────────────────────────── */
.bkl-notice {
    padding: 12px 16px;
    border-radius: var(--bkl-radius-sm);
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.bkl-notice--info    { background: #e8f4ff; color: #0066cc; }
.bkl-notice--warning { background: #fff8e1; color: #a06000; border: 1px solid var(--bkl-marigold); }

/* ── GCash Box ──────────────────────────────────────────────── */
.bkl-gcash-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bkl-primary);
    border: 2px solid var(--bkl-black);
    border-radius: var(--bkl-radius);
    padding: 20px;
    margin-bottom: 28px;
}

.bkl-gcash-icon { font-size: 2.5rem; }

.bkl-gcash-label { font-size: 0.8rem; color: #444; }

.bkl-gcash-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.bkl-gcash-number {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.bkl-gcash-amount { font-size: 0.95rem; margin-top: 4px; }

/* ── File Upload ────────────────────────────────────────────── */
.bkl-upload-area {
    position: relative;
    border: 2px dashed #ccc;
    border-radius: var(--bkl-radius-sm);
    padding: 32px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--bkl-transition);
    background: #fafafa;
}

.bkl-upload-area:hover,
.bkl-upload-area.dragover {
    border-color: var(--bkl-black);
    background: #f5ffe0;
}

.bkl-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.bkl-upload-icon { font-size: 2rem; margin-bottom: 8px; }
.bkl-upload-text { font-weight: 600; }
.bkl-upload-hint { font-size: 0.8rem; color: #888; margin-top: 4px; }

.bkl-file-preview {
    margin-top: 12px;
    padding: 10px 14px;
    background: #f0ffe0;
    border-radius: var(--bkl-radius-sm);
    border: 1px solid var(--bkl-lime);
    font-size: 0.875rem;
}

/* ── Early Bird Countdown ───────────────────────────────────── */
.bkl-eb-countdown {
    margin-top: 10px;
    padding: 8px 6px 6px;
    background: rgba(0,0,0,0.07);
    border-radius: 6px;
    text-align: center;
}

.bkl-eb-countdown-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #333;
    margin-bottom: 6px;
}

.bkl-eb-countdown-display {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2px;
}

.bkl-eb-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 34px;
}

.bkl-eb-unit b {
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1;
    color: #111;
}

.bkl-eb-unit small {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #555;
    margin-top: 2px;
}

.bkl-eb-colon {
    font-size: 1.1rem;
    font-weight: 900;
    color: #444;
    padding-bottom: 12px;
    line-height: 1;
}

.bkl-eb-deadline-note {
    font-size: 10px;
    color: #666;
    margin-top: 5px;
}

/* ── Form Footer ────────────────────────────────────────────── */
.bkl-form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.875rem;
    color: #666;
}

.bkl-form-footer a { color: var(--bkl-purple); font-weight: 600; }

/* ── Pending Page ───────────────────────────────────────────── */
.bkl-pending-wrap {
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--bkl-font-body);
}

.bkl-pending-hero {
    text-align: center;
    padding: 40px 32px;
    background: var(--bkl-primary);
    border-radius: var(--bkl-radius);
    margin-bottom: 28px;
}

.bkl-pending-icon { font-size: 3rem; margin-bottom: 12px; }

.bkl-pending-hero h2 {
    font-size: 1.8rem;
    margin: 0 0 12px;
}

.bkl-pending-eta {
    background: rgba(0,0,0,0.08);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.bkl-pending-details {
    background: var(--bkl-white);
    border-radius: var(--bkl-radius);
    box-shadow: var(--bkl-shadow);
    padding: 24px;
    margin-bottom: 20px;
}

.bkl-pending-details h3 {
    margin: 0 0 16px;
    font-size: 1.1rem;
}

.bkl-detail-table { width: 100%; border-collapse: collapse; }
.bkl-detail-table th,
.bkl-detail-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}
.bkl-detail-table th { font-weight: 600; width: 40%; color: #555; }

/* ── Badges ─────────────────────────────────────────────────── */
.bkl-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.bkl-badge--pending  { background: var(--bkl-marigold); color: #7a5000; }
.bkl-badge--rejected { background: #ffd6e7; color: #8b0037; }

/* ── Empty State ────────────────────────────────────────────── */
.bkl-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.bkl-pending-help {
    text-align: center;
    padding: 20px;
    font-size: 0.875rem;
    color: #666;
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE EVENT PAGE
   ═══════════════════════════════════════════════════════════════ */

.bkl-single-event {
    font-family: var(--bkl-font-body);
    color: #1a1a1a;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.bkl-event-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
}

.bkl-event-hero__image {
    position: relative;
    overflow: hidden;
    background: #111;
    min-height: 320px;
}

.bkl-event-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bkl-event-hero__img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #555;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.bkl-event-hero__card {
    background: #000;
    color: #fff;
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bkl-event-hero__top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.bkl-event-type-tag {
    display: inline-block;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bkl-event-members-tag {
    display: inline-block;
    background: var(--bkl-primary);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bkl-event-hero__title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.bkl-event-hero__excerpt {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 24px;
}

.bkl-event-hero__separator {
    width: 48px;
    height: 3px;
    background: var(--bkl-primary);
    border-radius: 2px;
    margin-bottom: 24px;
}

.bkl-event-hero__dates {
    color: var(--bkl-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4px;
}

.bkl-event-hero__date-sep {
    color: rgba(255,255,255,0.3);
    margin: 0 4px;
}

.bkl-event-hero__price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bkl-event-hero__price {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--bkl-primary);
    letter-spacing: -1px;
    line-height: 1;
}

.bkl-event-eb-active-badge {
    background: var(--bkl-primary);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-end;
    margin-bottom: 6px;
}

.bkl-event-hero__spots {
    font-size: 0.8rem;
    font-weight: 600;
}

.bkl-spots-warning { color: #FFDE59; }
.bkl-spots-full    { color: #FF4291; }
.bkl-spots-ok      { color: rgba(255,255,255,0.5); }

/* ── Body Content ─────────────────────────────────────────────── */
.bkl-event-body {
    padding: 64px 24px;
    background: #fff;
}

.bkl-event-body__inner {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.bkl-event-body__inner h2,
.bkl-event-body__inner h3 {
    color: #000;
    margin-top: 40px;
    margin-bottom: 12px;
    font-weight: 800;
}

.bkl-event-body__inner ul {
    padding-left: 0;
    list-style: none;
}

.bkl-event-body__inner ul li {
    padding: 6px 0 6px 28px;
    position: relative;
}

.bkl-event-body__inner ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 10px;
    height: 10px;
    background: var(--bkl-primary);
    border-radius: 50%;
}

.bkl-event-body__inner blockquote {
    background: #f8f8f8;
    border-left: 4px solid var(--bkl-primary);
    margin: 32px 0;
    padding: 24px 32px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.05rem;
    color: #444;
}

/* ── Registration Section ─────────────────────────────────────── */
.bkl-event-register-section {
    background: #000;
    color: #fff;
    padding: 72px 24px;
    text-align: center;
}

.bkl-event-register-section__inner {
    max-width: 600px;
    margin: 0 auto;
}

.bkl-reg-title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.bkl-reg-sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 28px;
}

.bkl-reg-btn {
    display: inline-block;
    background: var(--bkl-primary);
    color: #000;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--bkl-primary);
    cursor: pointer;
    transition: background var(--bkl-transition), color var(--bkl-transition), transform var(--bkl-transition);
    letter-spacing: 0.3px;
}

.bkl-reg-btn:hover {
    background: #b8e602;
    border-color: #b8e602;
    transform: translateY(-2px);
    color: #000;
}

.bkl-reg-btn--outline {
    background: transparent;
    color: var(--bkl-primary);
}

.bkl-reg-btn--outline:hover {
    background: var(--bkl-primary);
    color: #000;
}

.bkl-reg-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.bkl-reg-access-denied .bkl-reg-lock-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.bkl-reg-confirmed .bkl-reg-check {
    width: 64px;
    height: 64px;
    background: var(--bkl-primary);
    color: #000;
    font-size: 2rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.bkl-reg-fee-note {
    margin-top: 20px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

.bkl-reg-fee-note__regular {
    text-decoration: line-through;
    opacity: 0.7;
    margin-left: 4px;
}

/* ── Details Grid ─────────────────────────────────────────────── */
.bkl-event-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    background: #f4f4f4;
    padding: 56px 48px;
}

.bkl-event-details-col {
    padding: 0 32px;
    border-right: 1px solid #e0e0e0;
}

.bkl-event-details-col:first-child { padding-left: 0; }
.bkl-event-details-col:last-child  { padding-right: 0; border-right: none; }

.bkl-event-details-col__title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 20px;
}

.bkl-event-details-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bkl-event-details-list li {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
}

.bkl-event-details-list li:last-child { border-bottom: none; }

.bkl-dlist-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 3px;
}

.bkl-dlist-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.bkl-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.bkl-badge--members { background: var(--bkl-primary); color: #000; }
.bkl-badge--open    { background: #e8f5e9; color: #2e7d32; }

.bkl-eb-inline-badge {
    display: inline-block;
    background: var(--bkl-primary);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media ( max-width: 900px ) {
    .bkl-event-hero {
        grid-template-columns: 1fr;
    }

    .bkl-event-hero__image {
        min-height: 260px;
    }

    .bkl-event-hero__card {
        padding: 40px 28px;
    }

    .bkl-event-details-grid {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }

    .bkl-event-details-col {
        padding: 0 0 32px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 32px;
    }

    .bkl-event-details-col:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}


/* ═══════════════════════════════════════════════════════════════
   MEMBER PROFILE PAGE v3 — Full-Width Modern
   ═══════════════════════════════════════════════════════════════ */

/* ── Astra theme override: unlock full width on profile pages ── */
body.bkl-profile-full .ast-container,
body.bkl-profile-full #content .ast-container,
body.bkl-profile-full .ast-row,
body.bkl-profile-full #content,
body.bkl-profile-full #primary,
body.bkl-profile-full .site-content,
body.bkl-profile-full .content-area {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
}

body.bkl-profile-full #page {
    overflow-x: hidden;
}

/* ── Page wrapper ─────────────────────────────────────────────── */
.bkl-profile-page {
    font-family: var(--bkl-font-body);
    width: 100%;
    overflow-x: hidden;
}

/* ════════════════════════════════════════════════════════════════
   HERO — full-bleed black banner
   ════════════════════════════════════════════════════════════════ */
.bklp-hero {
    background: #000;
    background-image:
        radial-gradient(ellipse 80% 60% at 50% 120%, rgba(204,255,2,.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 80% at 100% 50%,  rgba(129,20,176,.12) 0%, transparent 60%);
    padding: 56px 64px;
    position: relative;
    overflow: hidden;
}

.bklp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,   transparent, transparent 39px, rgba(255,255,255,.025) 40px),
        repeating-linear-gradient(90deg,  transparent, transparent 39px, rgba(255,255,255,.025) 40px);
    pointer-events: none;
}

.bklp-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 48px;
}

/* Avatar in hero */
.bklp-hero__avatar {
    flex-shrink: 0;
    position: relative;
}

.bklp-hero__avatar-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 4px solid var(--bkl-primary);
    box-shadow: 0 0 0 8px rgba(204,255,2,.12), 0 0 40px rgba(204,255,2,.15);
}

.bklp-hero__avatar-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    opacity: 0;
    transition: opacity .2s;
    cursor: pointer;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
}

.bklp-hero__avatar:hover .bklp-hero__avatar-overlay { opacity: 1; }

.bklp-hero__avatar-spinner {
    display: none;
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.7);
    align-items: center;
    justify-content: center;
    color: var(--bkl-primary);
    font-weight: 700;
    font-size: 12px;
}

.bklp-avatar-input { display: none; }
.bklp-avatar-error {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 11px;
    color: #FF4291;
    font-weight: 600;
}

/* Info block in hero */
.bklp-hero__info {
    flex: 1;
    min-width: 0;
}

.bklp-hero__top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.bklp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.bklp-hero__badge--active  { background: var(--bkl-primary); color: #000; }
.bklp-hero__badge--pending { background: var(--bkl-marigold); color: #7a5000; }
.bklp-hero__badge--free    { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); }

.bklp-hero__name {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -.5px;
    line-height: 1;
}

.bklp-hero__tier {
    color: var(--bkl-primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 4px;
    letter-spacing: .3px;
}

.bklp-hero__rank {
    color: var(--bkl-pink);
    font-weight: 900;
    font-size: 0.9rem;
    margin: 0 0 24px;
}

.bklp-hero__since {
    color: rgba(255,255,255,.35);
    font-size: 0.75rem;
    margin: 0 0 28px;
    display: block;
}

/* Stats row in hero */
.bklp-hero__stats {
    display: flex;
    gap: 2px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.bklp-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 14px 24px;
    min-width: 80px;
    transition: background .2s;
}

.bklp-hero__stat:first-child { border-radius: 12px 0 0 12px; }
.bklp-hero__stat:last-child  { border-radius: 0 12px 12px 0; }
.bklp-hero__stat:not(:first-child):not(:last-child) { border-radius: 0; }

.bklp-hero__stat:hover { background: rgba(255,255,255,.09); }

.bklp-hero__stat-num {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: var(--bkl-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.bklp-hero__stat-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255,255,255,.4);
    white-space: nowrap;
}

/* Hero action buttons */
.bklp-hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bklp-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .18s;
    letter-spacing: .2px;
}

.bklp-hero__btn--primary {
    background: var(--bkl-primary);
    color: #000;
}

.bklp-hero__btn--primary:hover {
    background: #b8e602;
    color: #000;
    transform: translateY(-1px);
}

.bklp-hero__btn--ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
}

.bklp-hero__btn--ghost:hover {
    background: rgba(255,255,255,.14);
    color: #fff;
}

/* ════════════════════════════════════════════════════════════════
   BODY — sidebar + main
   ════════════════════════════════════════════════════════════════ */
.bklp-body {
    display: flex;
    align-items: flex-start;
    gap: 0;
    background: #f2f2f2;
}

/* ── Sidebar ──────────────────────────────────────────────────── */
.bklp-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    border-right: 1px solid #ebebeb;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.bklp-sidebar::-webkit-scrollbar { width: 4px; }
.bklp-sidebar::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

.bklp-sidebar__heading {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #bbb;
    margin: 0 0 12px;
}

/* Bio in sidebar */
.bklp-sidebar-bio {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #555;
}

/* Admin panel */
.bklp-admin-panel {
    background: #fffde7;
    border: 1.5px solid var(--bkl-primary);
    border-radius: 12px;
    padding: 16px;
}

.bklp-admin-panel__title {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bklp-admin-dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 12px;
    font-size: 0.78rem;
    margin: 0 0 12px;
}

.bklp-admin-dl dt { font-weight: 700; color: #777; }
.bklp-admin-dl dd { margin: 0; color: #333; word-break: break-all; }

.bklp-admin-edit {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    border: 1.5px solid #000;
    color: #000;
    padding: 5px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all .15s;
}

.bklp-admin-edit:hover {
    background: #000;
    color: var(--bkl-primary);
}

/* Edit form toggle */
.bklp-edit-toggle {
    width: 100%;
    background: #000;
    color: var(--bkl-primary);
    border: none;
    padding: 11px 16px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .15s;
    letter-spacing: .2px;
}

.bklp-edit-toggle:hover { background: #1a1a1a; }

.bklp-edit-form { display: none; }

/* Sidebar block wrapper */
.bklp-sidebar-block { display: flex; flex-direction: column; gap: 0; }

/* ── Member Info Card ─────────────────────────────────────── */
.bklp-info-card {
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bklp-info-card__status {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bklp-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    background: #e0e0e0;
    color: #444;
}
.bklp-status-pill--active  { background: #d4ffd4; color: #1a7a1a; }
.bklp-status-pill--pending { background: #fff3cd; color: #7a5600; }
.bklp-status-pill--expired { background: #fde8e8; color: #a01010; }
.bklp-status-pill--free    { background: #e8eaf6; color: #3949ab; }
.bklp-status-pill--paid    { background: #e8f5e9; color: #1b5e20; }

/* Info definition list */
.bklp-info-dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    font-size: 0.8rem;
    margin: 0;
}
.bklp-info-dl dt {
    font-weight: 700;
    color: #999;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: .4px;
    padding-top: 1px;
}
.bklp-info-dl dd {
    margin: 0;
    color: #222;
    font-weight: 500;
}
.bklp-info-dl dd small { color: #FF4291; font-size: 0.75em; margin-left: 4px; }
.bklp-info-dl__dd--warn { color: #d97706; }

.bklp-admin-edit {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    border: 1.5px solid #000;
    color: #000;
    padding: 5px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all .15s;
    align-self: flex-start;
}
.bklp-admin-edit:hover { background: #000; color: var(--bkl-primary); }

.bklp-field {
    margin-bottom: 14px;
}

.bklp-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #888;
    margin-bottom: 5px;
}

.bklp-field input,
.bklp-field select,
.bklp-field textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: var(--bkl-font-body);
    box-sizing: border-box;
    transition: border-color .15s;
    background: #fafafa;
    color: #111;
}

.bklp-field input:focus,
.bklp-field select:focus,
.bklp-field textarea:focus {
    outline: none;
    border-color: var(--bkl-primary);
    background: #fff;
}

.bklp-field textarea { resize: vertical; min-height: 80px; }

.bklp-save-btn {
    width: 100%;
    background: var(--bkl-primary);
    color: #000;
    border: none;
    padding: 11px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background .15s;
    letter-spacing: .2px;
}

.bklp-save-btn:hover { background: #b8e602; }

.bklp-msg {
    margin-top: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bklp-msg--ok  { background: #f0fdf4; color: #166534; }
.bklp-msg--err { background: #fef2f2; color: #991b1b; }

/* ── Main content ─────────────────────────────────────────────── */
.bklp-main {
    flex: 1;
    min-width: 0;
    padding: 32px 40px 80px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Section cards */
.bklp-section {
    background: #fff;
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
}

.bklp-section__title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #bbb;
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bklp-section__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #f0f0f0;
}

.bklp-section__title-text {
    color: #111;
}

.bklp-section__hint {
    font-size: 0.7rem;
    color: #ccc;
    font-weight: 400;
    letter-spacing: .3px;
    text-transform: none;
}

/* Empty state */
.bklp-empty {
    text-align: center;
    padding: 52px 24px;
}

.bklp-empty__icon {
    font-size: 2.8rem;
    margin-bottom: 14px;
    opacity: .6;
}

.bklp-empty p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0 0 20px;
}

.bklp-cta-link {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: var(--bkl-primary);
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background .15s;
    letter-spacing: .2px;
}

.bklp-cta-link:hover { background: #1a1a1a; color: var(--bkl-primary); }

/* ════════════════════════════════════════════════════════════════
   UPCOMING ACTIVITY — Timeline
   ════════════════════════════════════════════════════════════════ */
.bklp-timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 0;
}

.bklp-timeline::before {
    content: '';
    position: absolute;
    left: 56px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, #e5e5e5, transparent);
    z-index: 0;
}

.bklp-timeline-item {
    display: grid;
    grid-template-columns: 56px 36px 1fr;
    align-items: flex-start;
    padding-bottom: 28px;
    position: relative;
}

.bklp-timeline-item:last-child { padding-bottom: 0; }

.bklp-timeline-date {
    text-align: right;
    padding-top: 2px;
}

.bklp-tdate__day {
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    line-height: 1;
    color: #000;
}

.bklp-tdate__month {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #aaa;
    margin-top: 2px;
}

.bklp-tdate__year {
    display: block;
    font-size: 0.6rem;
    color: #ccc;
}

.bklp-timeline-dot {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 7px;
    z-index: 1;
}

.bklp-timeline-dot::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
    display: block;
    flex-shrink: 0;
}

.bklp-timeline-item--today .bklp-timeline-dot::before {
    background: var(--bkl-primary);
    box-shadow: 0 0 0 2px var(--bkl-primary), 0 0 8px rgba(204,255,2,.4);
}

/* Timeline card */
.bklp-tcard {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 16px 20px;
    transition: box-shadow .2s, border-color .2s;
    cursor: default;
}

.bklp-timeline-item--today .bklp-tcard {
    border-color: rgba(204,255,2,.6);
    background: #fcffe8;
}

.bklp-tcard:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    border-color: #e0e0e0;
}

.bklp-today-badge {
    display: inline-block;
    background: var(--bkl-primary);
    color: #000;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 6px;
}

.bklp-tcard__title {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0 0 10px;
    color: #000;
}

.bklp-tcard__title a {
    color: inherit;
    text-decoration: none;
}

.bklp-tcard__title a:hover { color: var(--bkl-purple); }

.bklp-tcard__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.bklp-tcard__chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #777;
    background: #fff;
    border: 1px solid #ebebeb;
    padding: 3px 9px;
    border-radius: 20px;
}

.bklp-tcard__chip--type {
    background: #000;
    color: var(--bkl-primary);
    border-color: #000;
    font-weight: 700;
    font-size: 0.7rem;
}

.bklp-tcard__chip--price {
    font-weight: 700;
    color: #000;
    background: #f8f8f8;
}

.bklp-eb-badge {
    background: var(--bkl-primary);
    color: #000;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .4px;
    vertical-align: middle;
}

.bklp-tcard__status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bklp-status-confirmed {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ════════════════════════════════════════════════════════════════
   EVENTS CALENDAR
   ════════════════════════════════════════════════════════════════ */
.bklp-calendar-wrap {
    position: relative;
}

.bklp-calendar { user-select: none; }

.bklp-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.bklp-cal-month-label {
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    letter-spacing: -.3px;
}

.bklp-cal-nav {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1.5px solid #e5e5e5;
    background: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}

.bklp-cal-nav:hover { background: #000; color: var(--bkl-primary); border-color: #000; }

.bklp-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.bklp-cal-dayname {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #bbb;
    padding: 2px 0 10px;
}

.bklp-cal-cell {
    aspect-ratio: 1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: default;
    position: relative;
    transition: background .15s;
}

.bklp-cal-cell--empty { background: transparent; cursor: default; }

.bklp-cal-daynum {
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
    line-height: 1;
}

.bklp-cal-cell--today .bklp-cal-daynum {
    width: 28px;
    height: 28px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.bklp-cal-cell--event {
    background: rgba(204,255,2,.18);
    cursor: pointer;
}

.bklp-cal-cell--event:hover {
    background: var(--bkl-primary);
}

.bklp-cal-cell--event:hover .bklp-cal-daynum { color: #000; font-weight: 900; }
.bklp-cal-cell--event:hover .bklp-cal-dot    { background: #000; }

.bklp-cal-dot {
    width: 4px;
    height: 4px;
    background: var(--bkl-purple);
    border-radius: 50%;
    margin-top: 3px;
}

/* Tooltip */
.bklp-cal-tooltip {
    position: absolute;
    z-index: 200;
    background: #111;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 18px 20px;
    width: 300px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    font-size: 0.8rem;
}

.bklp-tooltip-date {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.3);
    margin-bottom: 12px;
}

.bklp-tooltip-event {
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.07);
}

.bklp-tooltip-event:first-of-type { border-top: none; padding-top: 0; }

.bklp-tooltip-title {
    display: block;
    font-weight: 800;
    color: var(--bkl-primary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 7px;
    line-height: 1.3;
}

.bklp-tooltip-title:hover { text-decoration: underline; }

.bklp-tooltip-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: rgba(255,255,255,.5);
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.bklp-tooltip-monly {
    color: var(--bkl-primary);
    font-weight: 700;
    font-size: 10px;
}

.bklp-tooltip-registered {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: var(--bkl-primary);
    background: rgba(204,255,2,.12);
    border: 1px solid rgba(204,255,2,.25);
    padding: 5px 12px;
    border-radius: 20px;
}

.bklp-tooltip-full {
    font-size: 11px;
    font-weight: 700;
    color: var(--bkl-pink);
}

.bkl-cal-reg-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bkl-primary);
    color: #000;
    border: none;
    padding: 7px 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background .15s;
    letter-spacing: .2px;
}

.bkl-cal-reg-btn:hover { background: #b8e602; }
.bkl-cal-reg-btn:disabled { opacity: .55; cursor: not-allowed; }

.bklp-tooltip-action { margin-top: 8px; }

/* ════════════════════════════════════════════════════════════════
   EVENT HISTORY
   ════════════════════════════════════════════════════════════════ */
.bklp-history-list {
    display: flex;
    flex-direction: column;
}

.bklp-history-item {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background .15s;
}

.bklp-history-item:last-child { border-bottom: none; }

.bklp-history-date {
    font-size: 0.78rem;
    color: #bbb;
    font-weight: 600;
    text-align: right;
    line-height: 1.4;
}

.bklp-history-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color .15s;
}

.bklp-history-title:hover { color: var(--bkl-purple); }

.bklp-history-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bklp-history-meta span {
    font-size: 0.75rem;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bklp-hstatus {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
}

.bklp-hstatus--ok  { background: #e8f5e9; color: #2e7d32; }
.bklp-hstatus--reg { background: #ede7f6; color: #6a1b9a; }
.bklp-hstatus--ns  { background: #fff3e0; color: #bf360c; }
.bklp-hstatus--can { background: #f5f5f5; color: #9e9e9e; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .bklp-hero { padding: 40px 32px; }
    .bklp-hero__inner { gap: 32px; }
    .bklp-sidebar { width: 260px; padding: 24px 18px; }
    .bklp-main { padding: 24px 28px 60px; }
}

@media (max-width: 860px) {
    /* Stack layout */
    .bklp-body { flex-direction: column; }
    .bklp-sidebar {
        width: 100%;
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px 24px;
        overflow: visible;
    }
    .bklp-sidebar > * { flex: 1 1 220px; }
    .bklp-info-card { flex: 1 1 220px; }
    .bklp-main { padding: 20px 20px 60px; }

    /* Hero */
    .bklp-hero__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .bklp-hero__avatar-img { width: 120px; height: 120px; }
    .bklp-hero__name { font-size: 2rem; }
}

@media (max-width: 600px) {
    /* Hero — centered on mobile */
    .bklp-hero { padding: 24px 16px 20px; }
    .bklp-hero__inner { align-items: center; text-align: center; gap: 16px; }
    .bklp-hero__avatar { width: 90px; height: 90px; }
    .bklp-hero__avatar-img { width: 90px; height: 90px; }
    .bklp-hero__name { font-size: clamp(1.4rem, 6vw, 2rem); }
    .bklp-hero__top { justify-content: center; }
    .bklp-hero__actions { flex-direction: column; width: 100%; }
    .bklp-hero__btn { width: 100%; justify-content: center; }

    /* Stats — 3-col grid on mobile */
    .bklp-hero__stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        gap: 1px;
        border-radius: 12px;
        overflow: hidden;
    }
    .bklp-hero__stat { padding: 12px 6px; min-width: unset; border-radius: 0; }
    .bklp-hero__stat:first-child { border-radius: 12px 0 0 12px; }
    .bklp-hero__stat:last-child  { border-radius: 0 12px 12px 0; }
    .bklp-hero__stat-num { font-size: 1.1rem; }

    /* Sidebar */
    .bklp-sidebar { padding: 16px; flex-direction: column; gap: 16px; }
    .bklp-sidebar > * { flex: 1 1 100%; }
    .bklp-info-dl { font-size: 0.78rem; }

    /* Sections */
    .bklp-section { padding: 18px 14px; border-radius: 14px; }
    .bklp-section__title { flex-direction: column; align-items: flex-start; gap: 2px; }

    /* Timeline */
    .bklp-timeline::before { left: 40px; }
    .bklp-timeline-item { grid-template-columns: 40px 22px 1fr; gap: 0 8px; }
    .bklp-tdate__day { font-size: 1rem; }
    .bklp-tcard { padding: 12px; }
    .bklp-tcard__title { font-size: 0.9rem; }

    /* Calendar */
    .bklp-cal-cell { height: 34px; font-size: 0.68rem; }
    .bklp-cal-header { font-size: 0.62rem; }
    .bklp-cal-nav-title { font-size: 0.9rem; }

    /* History */
    .bklp-history-item { grid-template-columns: 1fr auto; gap: 4px; }
    .bklp-history-date { display: none; }
    .bklp-history-title { font-size: 0.875rem; }

    /* Calendar tooltip pinned to bottom on mobile */
    .bklp-cal-tooltip {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        top: auto !important;
        width: auto !important;
        max-width: none !important;
        border-radius: 16px;
        z-index: 9999;
    }
}

/* ══════════════════════════════════════════════════════════════════════
   GCash Payment Modal
   ══════════════════════════════════════════════════════════════════════ */

body.bkl-modal-open { overflow: hidden; }

.bkl-pay-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bkl-pay-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(4px);
}
.bkl-pay-modal__box {
    position: relative;
    z-index: 1;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 32px;
    width: min(520px, calc(100vw - 32px));
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    color: #fff;
}
.bkl-pay-modal__close {
    position: absolute;
    top: 16px; right: 18px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    transition: color .2s;
}
.bkl-pay-modal__close:hover { color: #fff; }
.bkl-pay-modal__title {
    font-family: 'Anton', sans-serif;
    font-size: 1.35rem;
    margin: 0 0 24px;
    color: #CCFF02;
    line-height: 1.3;
    padding-right: 28px;
}

/* Steps */
.bkl-pay-steps { display: flex; flex-direction: column; gap: 24px; }
.bkl-pay-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.bkl-pay-step__num {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #CCFF02;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.bkl-pay-step__body { flex: 1; }
.bkl-pay-step__body > strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #fff;
}

/* GCash info block */
.bkl-pay-gcash-info {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bkl-pay-gcash-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}
.bkl-pay-gcash-label { color: #888; }
.bkl-pay-gcash-val { color: #fff; font-weight: 600; }
.bkl-pay-gcash-number {
    font-family: monospace;
    font-size: 1rem;
    color: #CCFF02;
    letter-spacing: .05em;
}
.bkl-pay-amount-display { color: #CCFF02; font-size: 1.1rem; }

/* Form fields inside modal */
.bkl-pay-field { margin-bottom: 16px; }
.bkl-pay-field label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #888;
    margin-bottom: 6px;
    font-weight: 600;
}
.bkl-pay-field label span { color: #FF4291; }
.bkl-pay-field input[type="text"] {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    padding: 10px 14px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}
.bkl-pay-field input[type="text"]:focus { border-color: #CCFF02; }

/* Upload area inside modal */
.bkl-pay-field .bkl-upload-area {
    background: #1a1a1a;
    border: 1.5px dashed #333;
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.bkl-pay-field .bkl-upload-area:hover,
.bkl-pay-field .bkl-upload-area.dragover { border-color: #CCFF02; background: #1e2200; }
.bkl-upload-area__prompt { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.bkl-upload-area__prompt span { color: #ccc; font-size: 0.875rem; }
.bkl-upload-area__prompt small { color: #666; font-size: 0.75rem; }
.bkl-file-preview-name {
    color: #CCFF02;
    font-size: 0.85rem;
    padding: 6px 0;
}

/* Modal pending/rejected states */
.bkl-reg-pending {
    text-align: center;
    padding: 24px;
}
.bkl-reg-pending-icon { font-size: 2.5rem; margin-bottom: 12px; }
.bkl-reg-rejected-notice {
    background: #2a0a0a;
    border: 1px solid #FF4291;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #f5a;
}
.bkl-reg-rejected-notice strong { color: #FF4291; }

/* Admin approvals tab nav */
.bkl-approvals-tabs {
    display: flex;
    gap: 4px;
    margin: 16px 0 24px;
    border-bottom: 2px solid #ddd;
}
.bkl-approvals-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
}
.bkl-approvals-tab:hover { color: #000; }
.bkl-approvals-tab.is-active {
    color: #000;
    border-bottom-color: #CCFF02;
}

/* Mobile modal */
@media (max-width: 600px) {
    .bkl-pay-modal__box {
        border-radius: 20px 20px 0 0;
        align-self: flex-end;
        padding: 24px 20px 32px;
    }
    .bkl-pay-modal {
        align-items: flex-end;
    }
}

/* ══════════════════════════════════════════════════════════════════════
   Profile: Check-In Button
   ══════════════════════════════════════════════════════════════════════ */

.bklp-checkin-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    background: #CCFF02;
    color: #000;
    border: none;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: .3px;
    cursor: pointer;
    transition: background .15s, transform .1s;
    margin-left: 8px;
    vertical-align: middle;
}
.bklp-checkin-btn:hover:not(:disabled) {
    background: #b8e800;
    transform: translateY(-1px);
}
.bklp-checkin-btn:disabled,
.bklp-checkin-btn--waiting {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    pointer-events: auto; /* allow title tooltip */
}
.bklp-checkin-btn--done {
    background: #1a1a1a;
    color: #CCFF02;
    cursor: default;
    pointer-events: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
}

/* ══════════════════════════════════════════════════════════════════════
   Payment Modal: Success State
   ══════════════════════════════════════════════════════════════════════ */

.bkl-pay-success {
    text-align: center;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.bkl-pay-success__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #CCFF02;
    color: #000;
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bkl-pop .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes bkl-pop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.bkl-pay-success__msg {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.bkl-pay-success__sub {
    font-size: 0.825rem;
    color: #888;
    margin: 0;
    max-width: 340px;
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   [bkl_events] Shortcode
   ══════════════════════════════════════════════════════════════ */

/* ── Wrapper ────────────────────────────────────────────────── */
.bkl-events-wrap {
    font-family: var(--bkl-font-body);
    color: var(--bkl-white);
    --ev-card-bg: #111;
    --ev-card-border: #222;
    --ev-tab-bg: #1a1a1a;
    --ev-tab-active-bg: #000;
}

/* ── Tab Bar ────────────────────────────────────────────────── */
.bkl-ev-tabs {
    display: flex;
    gap: 4px;
    background: var(--ev-tab-bg);
    border-radius: var(--bkl-radius-sm) var(--bkl-radius-sm) 0 0;
    padding: 6px 8px 0;
    border-bottom: 2px solid #222;
    margin-bottom: 24px;
}
.bkl-ev-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #888;
    font-family: var(--bkl-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: -2px;
    border-radius: var(--bkl-radius-sm) var(--bkl-radius-sm) 0 0;
    transition: color var(--bkl-transition), border-color var(--bkl-transition);
}
.bkl-ev-tab:hover { color: var(--bkl-white); }
.bkl-ev-tab--active {
    color: var(--bkl-primary);
    border-bottom-color: var(--bkl-primary);
}
.bkl-ev-tab svg { flex-shrink: 0; }

/* ── View panels ────────────────────────────────────────────── */
.bkl-ev-view { display: block; }
.bkl-ev-view[hidden] { display: none; }

/* ── Card grid ──────────────────────────────────────────────── */
.bkl-ev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* ── Event Card ─────────────────────────────────────────────── */
.bkl-evc {
    background: var(--ev-card-bg);
    border: 1px solid var(--ev-card-border);
    border-radius: var(--bkl-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--bkl-transition), box-shadow var(--bkl-transition);
}
.bkl-evc:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(204,255,2,.12);
}

/* Card image */
.bkl-evc__img-link { display: block; position: relative; }
.bkl-evc__img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1e1e1e;
}
.bkl-evc__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.bkl-evc:hover .bkl-evc__img img { transform: scale(1.04); }
.bkl-evc__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1e1e;
}

/* Overlay badges */
.bkl-evc__overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    pointer-events: none;
}
.bkl-evc__type-badge,
.bkl-evc__members-badge,
.bkl-evc__eb-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1.4;
}
.bkl-evc__type-badge    { background: rgba(0,0,0,.75); color: #fff; border: 1px solid #333; }
.bkl-evc__members-badge { background: rgba(129,20,176,.85); color: #fff; }
.bkl-evc__eb-badge      { background: rgba(255,222,89,.9); color: #000; }

/* Card body */
.bkl-evc__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

/* Date row */
.bkl-evc__date-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.bkl-evc__date {
    font-size: 0.78rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}
.bkl-evc__today-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    background: var(--bkl-primary);
    color: #000;
    border-radius: 4px;
}
.bkl-evc__full-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    background: #333;
    color: #888;
    border-radius: 4px;
}
.bkl-evc__spots-warn {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    background: rgba(255,222,89,.15);
    color: var(--bkl-marigold);
    border-radius: 4px;
}

/* Title */
.bkl-evc__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
}
.bkl-evc__title a {
    color: var(--bkl-white);
    text-decoration: none;
}
.bkl-evc__title a:hover { color: var(--bkl-primary); }

/* Meta chips */
.bkl-evc__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.bkl-evc__chip {
    font-size: 0.72rem;
    color: #999;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 3px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.bkl-evc__chip--skill { color: var(--bkl-primary); border-color: rgba(204,255,2,.25); }

/* Footer */
.bkl-evc__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #222;
}
.bkl-evc__price-block { display: flex; align-items: baseline; gap: 6px; }
.bkl-evc__price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bkl-white);
}
.bkl-evc__price--free { color: var(--bkl-primary); }
.bkl-evc__price-regular {
    font-size: 0.78rem;
    color: #555;
    text-decoration: line-through;
}
.bkl-evc__btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    background: var(--bkl-primary);
    color: #000;
    border-radius: var(--bkl-radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity var(--bkl-transition);
}
.bkl-evc__btn:hover { opacity: .85; color: #000; }
.bkl-evc__btn--registered { background: #1e3a1e; color: #4CAF50; cursor: default; }
.bkl-evc__btn--pending    { background: #332a00; color: var(--bkl-marigold); cursor: default; }
.bkl-evc__btn--full       { background: #222; color: #666; }

/* ── List View ──────────────────────────────────────────────── */
.bkl-ev-list-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.bkl-ev-list {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
.bkl-ev-list thead th {
    text-align: left;
    padding: 10px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #666;
    border-bottom: 1px solid #222;
    white-space: nowrap;
}
.bkl-ev-list__row td {
    padding: 12px 14px;
    border-bottom: 1px solid #1a1a1a;
    vertical-align: middle;
}
.bkl-ev-list__row:hover td { background: #111; }
.bkl-ev-list__row--full td { opacity: .6; }

.bkl-ev-list__title-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}
.bkl-ev-list__thumb {
    width: 48px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.bkl-ev-list__name {
    color: var(--bkl-white);
    font-weight: 600;
    text-decoration: none;
    display: block;
}
.bkl-ev-list__name:hover { color: var(--bkl-primary); }
.bkl-ev-list__badges { display: flex; gap: 4px; margin-top: 3px; }
.bkl-ev-list__badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
}
.bkl-ev-list__badge--members { background: rgba(129,20,176,.7); color: #fff; }
.bkl-ev-list__badge--eb      { background: rgba(255,222,89,.8); color: #000; }

.bkl-ev-list__date { display: block; font-weight: 500; color: #ddd; white-space: nowrap; }
.bkl-ev-list__time { display: block; font-size: 0.78rem; color: #777; }
.bkl-ev-list__type {
    font-size: 0.78rem;
    color: #aaa;
    white-space: nowrap;
}
.bkl-ev-list__skill { color: #aaa; white-space: nowrap; }
.bkl-ev-list__venue { color: #777; font-size: 0.82rem; white-space: nowrap; }
.bkl-ev-list__price { font-weight: 700; color: #fff; white-space: nowrap; }
.bkl-ev-list__price--free { color: var(--bkl-primary); }
.bkl-ev-list__spots { font-size: 0.82rem; white-space: nowrap; color: #aaa; }
.bkl-ev-list__spots--full { color: #555; }
.bkl-ev-list__spots--low  { color: var(--bkl-marigold); }

.bkl-ev-list__cta {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bkl-primary);
    color: #000;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.bkl-ev-list__cta:hover { opacity: .85; color: #000; }
.bkl-ev-list__cta--reg     { background: #1e3a1e; color: #4CAF50; }
.bkl-ev-list__cta--pending { background: #332a00; color: var(--bkl-marigold); }

/* ── Empty State ────────────────────────────────────────────── */
.bkl-ev-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px 20px;
    color: #555;
    text-align: center;
}
.bkl-ev-empty p {
    margin: 0;
    font-size: 0.95rem;
}

/* ── Calendar View ──────────────────────────────────────────── */
.bkl-ev-cal-wrap { width: 100%; }
.bkl-ev-cal {
    font-family: var(--bkl-font-body);
    background: var(--ev-card-bg);
    border: 1px solid #222;
    border-radius: var(--bkl-radius);
    overflow: hidden;
}

/* Calendar header */
.bkl-evcal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #222;
}
.bkl-evcal__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bkl-white);
    margin: 0;
}
.bkl-evcal__nav {
    display: flex;
    gap: 4px;
}
.bkl-evcal__nav-btn {
    background: #1e1e1e;
    border: 1px solid #333;
    color: #aaa;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background var(--bkl-transition), color var(--bkl-transition);
}
.bkl-evcal__nav-btn:hover { background: #333; color: #fff; }

/* Weekday labels */
.bkl-evcal__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-bottom: 1px solid #1a1a1a;
}
.bkl-evcal__weekday {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #555;
    padding: 8px 0;
}

/* Day grid */
.bkl-evcal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.bkl-evcal__day {
    min-height: 80px;
    border-right: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding: 6px 5px;
    position: relative;
    cursor: default;
}
.bkl-evcal__day:nth-child(7n) { border-right: none; }
.bkl-evcal__day--other { opacity: .35; }
.bkl-evcal__day--today .bkl-evcal__day-num {
    background: var(--bkl-primary);
    color: #000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.bkl-evcal__day--has-events { cursor: pointer; }
.bkl-evcal__day--has-events:hover { background: rgba(255,255,255,.03); }
.bkl-evcal__day-num {
    font-size: 0.78rem;
    color: #888;
    line-height: 1;
    margin-bottom: 4px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bkl-evcal__chip {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: #000;
    background: var(--bkl-primary);
    border-radius: 3px;
    padding: 2px 5px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    text-decoration: none;
}
.bkl-evcal__chip:hover { opacity: .85; color: #000; }
.bkl-evcal__chip--full    { background: #333; color: #666; cursor: default; }
.bkl-evcal__chip--more {
    font-size: 0.6rem;
    background: transparent;
    color: #666;
    cursor: pointer;
    padding: 1px 5px;
}
.bkl-evcal__chip--more:hover { color: #aaa; }

/* Calendar popover */
.bkl-evcal__popover {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: var(--bkl-radius-sm);
    padding: 12px;
    min-width: 220px;
    max-width: 280px;
    box-shadow: 0 8px 24px rgba(0,0,0,.5);
    animation: bkl-fade-in .15s ease;
}
@keyframes bkl-fade-in {
    from { opacity: 0; transform: translateX(-50%) translateY(4px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.bkl-evcal__popover-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
    padding: 2px;
}
.bkl-evcal__popover-close:hover { color: #fff; }
.bkl-evcal__popover-date {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #666;
    margin: 0 0 10px;
    padding-right: 20px;
}
.bkl-evcal__popover-event {
    padding: 8px 0;
    border-bottom: 1px solid #2a2a2a;
}
.bkl-evcal__popover-event:last-child { border-bottom: none; }
.bkl-evcal__popover-event-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 3px;
}
.bkl-evcal__popover-event-title:hover { color: var(--bkl-primary); }
.bkl-evcal__popover-event-meta {
    font-size: 0.72rem;
    color: #666;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.bkl-evcal__popover-cta {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 12px;
    background: var(--bkl-primary);
    color: #000;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
}
.bkl-evcal__popover-cta:hover { opacity: .85; color: #000; }

/* ── Mobile: Events Shortcode ───────────────────────────────── */
@media (max-width: 600px) {
    .bkl-ev-tabs { padding: 4px 6px 0; }
    .bkl-ev-tab  { padding: 8px 12px; font-size: 0.78rem; }

    .bkl-ev-grid {
        grid-template-columns: 1fr;
    }

    .bkl-evcal__day { min-height: 60px; }
    .bkl-evcal__chip { display: none; }
    .bkl-evcal__day--has-events .bkl-evcal__day-num::after {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        background: var(--bkl-primary);
        border-radius: 50%;
        margin: 2px auto 0;
    }

    .bkl-evcal__popover {
        position: fixed;
        bottom: 10px;
        left: 10px;
        right: 10px;
        top: auto;
        transform: none;
        max-width: none;
    }
    @keyframes bkl-fade-in {
        from { opacity: 0; transform: translateY(8px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}
