
        /* ── Google Font Import ────────────────────────────────────────────── */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

        /* ── Design Tokens ─────────────────────────────────────────────────── */
        .lbk-wrap {
            --lbk-bg:        #F0F7FA;
            --lbk-surface:   #FFFFFF;
            --lbk-surface2:  #F4F9FB;
            --lbk-border:    rgba(8,145,178,.12);
            --lbk-border2:   rgba(8,145,178,.22);
            --lbk-accent:    #0891B2;
            --lbk-accent2:   #0369A1;
            --lbk-accent3:   #7C3AED;
            --lbk-text:      #0A0A0A;
            --lbk-muted:     #52657A;
            --lbk-muted2:    #94A3B8;
            --lbk-error:     #DC2626;
            --lbk-success:   #0891B2;
            --lbk-warn:      #D97706;
            --lbk-radius:    20px;
            --lbk-radius-sm: 12px;
            --lbk-font-head: 'Syne', sans-serif;
            --lbk-font-body: 'DM Sans', sans-serif;
            --lbk-glow:      0 0 40px rgba(8,145,178,.12);
            --lbk-shadow:    0 8px 40px rgba(8,145,178,.10);

            font-family: var(--lbk-font-body);
            color: var(--lbk-text);
            background: var(--lbk-bg);
            padding: 40px clamp(16px, 4vw, 48px) 60px;
            width: 100%;
            max-width: 100%;
            margin: 0;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
            min-height: 520px;
        }

        .lbk-wrap *, .lbk-wrap *::before, .lbk-wrap *::after {
            box-sizing: inherit;
        }

        /* ── Ambient Orbs ──────────────────────────────────────────────────── */
        .lbk-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
            z-index: 0;
        }

        .lbk-orb-1 {
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(8,145,178,.15) 0%, transparent 70%);
            top: -120px; right: -80px;
            animation: lbk-orb-drift 12s ease-in-out infinite alternate;
        }

        .lbk-orb-2 {
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(3,105,161,.10) 0%, transparent 70%);
            bottom: 0; left: -60px;
            animation: lbk-orb-drift 16s ease-in-out infinite alternate-reverse;
        }

        .lbk-orb-3 {
            width: 200px; height: 200px;
            background: radial-gradient(circle, rgba(124,58,237,.06) 0%, transparent 70%);
            top: 50%; left: 50%;
            animation: lbk-orb-drift 20s ease-in-out infinite alternate;
        }

        @keyframes lbk-orb-drift {
            from { transform: translate(0, 0) scale(1); }
            to   { transform: translate(30px, 20px) scale(1.1); }
        }

        /* ── Card ──────────────────────────────────────────────────────────── */
        .lbk-card {
            position: relative;
            z-index: 1;
            background: var(--lbk-surface);
            border: 1px solid var(--lbk-border);
            border-radius: var(--lbk-radius);
            padding: clamp(28px, 5vw, 48px) clamp(20px, 5vw, 48px);
            width: 100%;
            max-width: 100vw;
            margin: 0 auto;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: var(--lbk-shadow), inset 0 1px 0 rgba(8,145,178,.08);
            animation: lbk-card-in .4s cubic-bezier(.22,1,.36,1) both;
        }

        .lbk-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--lbk-radius);
            padding: 1px;
            background: linear-gradient(135deg, rgba(8,145,178,.25), transparent 40%, rgba(3,105,161,.15));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        @keyframes lbk-card-in {
            from { opacity: 0; transform: translateY(24px) scale(.98); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* ── Step Badge ────────────────────────────────────────────────────── */
        .lbk-step-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(8,145,178,.08);
            border: 1px solid rgba(8,145,178,.2);
            color: var(--lbk-accent);
            font-family: var(--lbk-font-body);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 99px;
            margin-bottom: 20px;
        }

        .lbk-badge-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--lbk-accent);
            box-shadow: 0 0 8px var(--lbk-accent);
            animation: lbk-pulse-dot 2s ease-in-out infinite;
        }

        @keyframes lbk-pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%       { opacity: .5; transform: scale(.8); }
        }

        /* ── Typography ────────────────────────────────────────────────────── */
        .lbk-heading {
            font-family: var(--lbk-font-head);
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 800;
            line-height: 1.1;
            margin: 0 0 10px;
            color: var(--lbk-text);
            letter-spacing: -.02em;
        }

        .lbk-heading-sm {
            font-size: clamp(20px, 3vw, 26px);
        }

        .lbk-heading-accent {
            background: linear-gradient(90deg, var(--lbk-accent), var(--lbk-accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .lbk-sub {
            font-size: 15px;
            color: var(--lbk-muted);
            margin: 0 0 28px;
            line-height: 1.6;
            font-weight: 400;
        }

        .lbk-section-title {
            font-family: var(--lbk-font-body);
            font-size: 11px;
            font-weight: 600;
            color: var(--lbk-muted);
            text-transform: uppercase;
            letter-spacing: .12em;
            margin: 0 0 14px;
        }

        .lbk-label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--lbk-muted);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        /* ── GPS Button ────────────────────────────────────────────────────── */
        .lbk-btn-gps {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px 24px;
            background: linear-gradient(135deg, rgba(8,145,178,.1), rgba(3,105,161,.08));
            border: 1px solid rgba(8,145,178,.25);
            border-radius: var(--lbk-radius-sm);
            color: var(--lbk-accent);
            font-family: var(--lbk-font-body);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all .2s ease;
            overflow: hidden;
        }

        .lbk-btn-gps::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(8,145,178,.15), rgba(3,105,161,.12));
            opacity: 0;
            transition: opacity .2s;
        }

        .lbk-btn-gps:hover::after { opacity: 1; }
        .lbk-btn-gps:hover {
            background: linear-gradient(135deg, rgba(8,145,178,.15), rgba(3,105,161,.12));
            border-color: rgba(8,145,178,.5);
            box-shadow: 0 0 24px rgba(8,145,178,.15);
            transform: translateY(-1px);
            color:#0284C7;
        }

        .lbk-btn-gps:disabled {
            opacity: .5;
            cursor: not-allowed;
            transform: none;
        }

        .lbk-gps-ring {
            position: absolute;
            width: 100%; height: 100%;
            top: 0; left: 0;
            border-radius: inherit;
            border: 1px solid rgba(8,145,178,.4);
            animation: lbk-ring-expand 2.5s ease-out infinite;
            pointer-events: none;
        }

        @keyframes lbk-ring-expand {
            0%   { opacity: .7; transform: scale(1); }
            100% { opacity: 0;  transform: scale(1.04); }
        }

        .lbk-btn-gps.is-loading .lbk-btn-icon {
            animation: lbk-spin 1s linear infinite;
            display: inline-block;
        }

        /* ── Primary Button ────────────────────────────────────────────────── */
        .lbk-btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--lbk-accent), #0369A1);
            color: #FFFFFF;
            border: none;
            border-radius: var(--lbk-radius-sm);
            padding: 15px 24px;
            font-family: var(--lbk-font-body);
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all .2s ease;
            box-shadow: 0 4px 24px rgba(8,145,178,.3);
            letter-spacing: -.01em;
        }

        .lbk-btn-primary:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(8,145,178,.45);
            background: linear-gradient(135deg, #38BDF8, #0284C7);
        }

        .lbk-btn-primary:active:not(:disabled) { transform: translateY(0) scale(.98); }

        .lbk-btn-primary:disabled {
            background: var(--lbk-surface2);
            color: var(--lbk-muted2);
            box-shadow: none;
            cursor: not-allowed;
        }

        .lbk-btn-full { width: 100%; margin-top: 8px; }

        /* ── Ghost Button ──────────────────────────────────────────────────── */
        .lbk-btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            border: 1px solid var(--lbk-border2);
            border-radius: var(--lbk-radius-sm);
            padding: 13px 18px;
            font-family: var(--lbk-font-body);
            font-size: 14px;
            font-weight: 600;
            color: var(--lbk-muted);
            cursor: pointer;
            transition: all .2s ease;
        }

        .lbk-btn-ghost:hover {
            border-color: rgba(8,145,178,.2);
            color: var(--lbk-text);
            background: rgba(8,145,178,.03);
        }

        .lbk-btn-sm { padding: 8px 14px; font-size: 12px; }

        .lbk-btn-row {
            display: flex;
            gap: 12px;
            margin-top: 28px;
        }

        .lbk-btn-row .lbk-btn-primary { flex: 1; }

        /* ── Divider ───────────────────────────────────────────────────────── */
        .lbk-divider {
            display: flex;
            align-items: center;
            gap: 14px;
            margin: 22px 0;
            color: var(--lbk-muted2);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .1em;
        }

        .lbk-divider::before,
        .lbk-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--lbk-border);
        }

        /* ── Inputs ────────────────────────────────────────────────────────── */
        .lbk-field-group { margin-bottom: 20px; }

        .lbk-input-wrap {
            position: relative;
            display: flex;
            align-items: center;
        }

        .lbk-input-icon {
            position: absolute;
            left: 14px;
            font-size: 16px;
            pointer-events: none;
            opacity: .6;
        }

        .lbk-input {
            width: 100%;
            padding: 14px 16px 14px 44px;
            background: var(--lbk-surface2);
            border: 1px solid var(--lbk-border);
            border-radius: var(--lbk-radius-sm);
            font-family: var(--lbk-font-body);
            font-size: 16px;
            font-weight: 500;
            color: var(--lbk-text);
            transition: all .2s ease;
            outline: none;
        }

        .lbk-input::placeholder { color: var(--lbk-muted2); }

        .lbk-input:focus {
            border-color: rgba(8,145,178,.5);
            background: rgba(8,145,178,.04);
            box-shadow: 0 0 0 3px rgba(8,145,178,.1);
        }

        .lbk-input.lbk-input-error {
            border-color: rgba(220,38,38,.5);
            box-shadow: 0 0 0 3px rgba(220,38,38,.08);
        }

        .lbk-input.lbk-input-ok {
            border-color: rgba(8,145,178,.4);
        }

        .lbk-field-hint {
            display: block;
            font-size: 12px;
            margin-top: 6px;
            min-height: 18px;
            font-weight: 500;
        }

        .lbk-field-hint.lbk-hint-error   { color: var(--lbk-error); }
        .lbk-field-hint.lbk-hint-success  { color: var(--lbk-success); }

        /* ── Notice ────────────────────────────────────────────────────────── */
        .lbk-notice {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: var(--lbk-radius-sm);
            font-size: 13px;
            font-weight: 500;
            margin: 14px 0 0;
            animation: lbk-notice-in .2s ease both;
        }

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

        .lbk-notice-info    { background: rgba(3,105,161,.1);  border: 1px solid rgba(3,105,161,.2);  color: #0891B2; }
        .lbk-notice-success { background: rgba(8,145,178,.08); border: 1px solid rgba(8,145,178,.2); color: var(--lbk-accent); }
        .lbk-notice-warning { background: rgba(217,119,6,.08); border: 1px solid rgba(217,119,6,.2);  color: var(--lbk-warn); }
        .lbk-notice-error   { background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.2);  color: var(--lbk-error); }

        /* ── Tiles ─────────────────────────────────────────────────────────── */
        .lbk-tile-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 12px;
            margin-bottom: 24px;
        }

        .lbk-tile-grid--sm {
            grid-template-columns: repeat(2, 1fr);
        }

        .lbk-tile {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 22px 14px;
            background: var(--lbk-surface2);
            border: 1px solid var(--lbk-border);
            border-radius: 16px;
            cursor: pointer;
            transition: all .22s cubic-bezier(.22,1,.36,1);
            font-family: var(--lbk-font-body);
            overflow: hidden;
        }

        .lbk-tile-h {
            padding: 20px 16px;
            align-items: flex-start;
        }

        .lbk-tile-glow {
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, rgba(8,145,178,.18) 0%, transparent 65%);
            opacity: 0;
            transition: opacity .22s;
        }
        .lbk-tile:hover{
            background: rgba(8,145,178,.04);
        }

        .lbk-tile:hover .lbk-tile-glow,
        .lbk-tile.is-selected .lbk-tile-glow {
            opacity: 1;
            background: radial-gradient(ellipse at 50% 0%, rgba(8,145,178,.25) 0%, transparent 65%);
        }

        .lbk-tile:hover {
            border-color: rgba(8,145,178,.35);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(8,145,178,.06), 0 0 0 1px rgba(8,145,178,.15);
        }

        .lbk-tile.is-selected {
            border-color: var(--lbk-accent);
            background: rgba(8,145,178,.07);
            box-shadow: 0 0 0 1px var(--lbk-accent), 0 8px 32px rgba(8,145,178,.15);
        }

        .lbk-tile-icon { font-size: 28px; line-height: 1; position: relative; z-index: 1; }

        .lbk-tile-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--lbk-text);
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .lbk-tile-desc {
            font-size: 11px;
            color: var(--lbk-muted);
            font-weight: 400;
            position: relative;
            z-index: 1;
        }

        .lbk-tile-check {
            position: absolute;
            top: 10px; right: 10px;
            width: 20px; height: 20px;
            border-radius: 50%;
            background: var(--lbk-accent);
            color: #FFFFFF;
            font-size: 10px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(.5);
            transition: all .2s cubic-bezier(.34,1.56,.64,1);
        }

        .lbk-tile.is-selected .lbk-tile-check {
            opacity: 1;
            transform: scale(1);
        }

        /* ── Location pill ─────────────────────────────────────────────────── */
        .lbk-location-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(8,145,178,.06);
            border: 1px solid rgba(8,145,178,.18);
            color: var(--lbk-accent);
            border-radius: 99px;
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .lbk-location-pill:empty { display: none; }

        /* ── Results ───────────────────────────────────────────────────────── */
        .lbk-results-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            gap: 12px;
        }

        .lbk-results-header-left {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .lbk-results-header .lbk-heading { margin: 0; }

        .lbk-results-count {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: var(--lbk-muted);
            letter-spacing: .01em;
        }

        /* Skeleton */
        .lbk-skeleton { display: flex; flex-direction: column; gap: 12px; }

        .lbk-skeleton-item {
            height: 100px;
            border-radius: 14px;
            background: linear-gradient(90deg,
                var(--lbk-surface2) 25%,
                rgba(8,145,178,.03) 50%,
                var(--lbk-surface2) 75%
            );
            background-size: 200% 100%;
            animation: lbk-shimmer 1.6s ease-in-out infinite;
        }

        @keyframes lbk-shimmer {
            from { background-position: 200% 0; }
            to   { background-position: -200% 0; }
        }

        /* Section labels */
        .lbk-section-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 700;
            color: var(--lbk-muted);
            text-transform: uppercase;
            letter-spacing: .1em;
            margin: 20px 0 12px;
        }

        .lbk-section-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--lbk-border);
        }

        /* Provider card */
        .lbk-providers-grid { display: flex; flex-direction: column; gap: 10px; }

        .lbk-provider-card {
            position: relative;
            border: 1px solid var(--lbk-border);
            border-radius: 16px;
            padding: 18px 20px;
            background: var(--lbk-surface2);
            transition: all .2s ease;
            overflow: hidden;
        }

        .lbk-provider-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--lbk-accent), var(--lbk-accent2));
            opacity: 0;
            transition: opacity .2s;
        }

        .lbk-provider-card:hover {
            border-color: var(--lbk-border2);
            box-shadow: 0 8px 32px rgba(8,145,178,.08);
            transform: translateY(-2px);
        }

        .lbk-provider-card:hover::before { opacity: 1; }

        .lbk-provider-name {
            font-family: var(--lbk-font-head);
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 5px;
            color: var(--lbk-text);
        }

        .lbk-provider-address {
            font-size: 13px;
            color: var(--lbk-muted);
            margin: 0 0 10px;
            line-height: 1.5;
        }

        .lbk-provider-meta {
            display: flex;
            gap: 14px;
            font-size: 12px;
            color: var(--lbk-muted);
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        .lbk-btn-book {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(8,145,178,.1);
            border: 1px solid rgba(8,145,178,.25);
            color: var(--lbk-accent);
            border-radius: 8px;
            padding: 9px 16px;
            font-family: var(--lbk-font-body);
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all .18s ease;
        }

        .lbk-btn-book:hover {
            background: rgba(8,145,178,.2);
            border-color: rgba(8,145,178,.5);
            box-shadow: 0 0 16px rgba(8,145,178,.15);
        }

        /* Slot picker */
        .lbk-slot-picker {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--lbk-border);
        }

        .lbk-slot-label {
            font-size: 11px;
            font-weight: 700;
            color: var(--lbk-muted);
            text-transform: uppercase;
            letter-spacing: .1em;
            margin-bottom: 10px;
        }

        .lbk-dates {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .lbk-date-btn {
            padding: 8px 14px;
            border: 1px solid var(--lbk-border2);
            border-radius: 8px;
            background: var(--lbk-surface);
            font-family: var(--lbk-font-body);
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            color: var(--lbk-muted);
            transition: all .15s ease;
        }

        .lbk-date-btn:hover,
        .lbk-date-btn.is-active {
            border-color: var(--lbk-accent);
            color: var(--lbk-accent);
            background: rgba(8,145,178,.07);
        }

        .lbk-times {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .lbk-time-btn {
            padding: 7px 13px;
            border: 1px solid var(--lbk-border);
            border-radius: 8px;
            background: var(--lbk-surface);
            font-family: var(--lbk-font-body);
            font-size: 12px;
            font-weight: 500;
            color: var(--lbk-muted);
            cursor: pointer;
            transition: all .15s ease;
        }

        .lbk-time-btn:hover,
        .lbk-time-btn.is-active {
            border-color: var(--lbk-accent2);
            color: #0891B2;
            background: rgba(3,105,161,.08);
        }

        .lbk-slot-msg {
            font-size: 12px;
            color: var(--lbk-warn);
            margin: 0 0 10px;
        }

        /* ── Pagination ────────────────────────────────────────────────────── */
        .lbk-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 28px;
            padding-top: 20px;
            border-top: 1px solid var(--lbk-border);
            flex-wrap: wrap;
        }

        .lbk-page-numbers {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Prev / Next arrow buttons */
        .lbk-page-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 1px solid var(--lbk-border2);
            background: var(--lbk-surface);
            color: var(--lbk-muted);
            cursor: pointer;
            transition: all .18s ease;
            flex-shrink: 0;
        }

        .lbk-page-btn:hover:not(:disabled) {
            border-color: rgba(8,145,178,.4);
            color: var(--lbk-accent);
            background: rgba(8,145,178,.06);
            box-shadow: 0 2px 12px rgba(8,145,178,.1);
        }

        .lbk-page-btn:disabled {
            opacity: .35;
            cursor: not-allowed;
        }

        /* Numbered page buttons */
        .lbk-page-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 38px;
            height: 38px;
            padding: 0 6px;
            border-radius: 10px;
            border: 1px solid transparent;
            background: transparent;
            color: var(--lbk-muted);
            font-family: var(--lbk-font-body);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all .18s ease;
            flex-shrink: 0;
        }

        .lbk-page-num:hover:not(.is-active) {
            border-color: var(--lbk-border2);
            color: var(--lbk-text);
            background: rgba(8,145,178,.04);
        }

        .lbk-page-num.is-active {
            background: linear-gradient(135deg, var(--lbk-accent), #0369A1);
            color: #FFFFFF;
            border-color: transparent;
            box-shadow: 0 4px 16px rgba(8,145,178,.35);
            cursor: default;
        }

        /* Ellipsis separator */
        .lbk-page-ellipsis {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 38px;
            font-size: 13px;
            font-weight: 600;
            color: var(--lbk-muted2);
            pointer-events: none;
            flex-shrink: 0;
        }

        /* Page-enter animation */
        @keyframes lbk-results-page-in {
            from { opacity: 0; transform: translateY(10px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .lbk-providers-grid {
            animation: lbk-results-page-in .25s ease both;
        }

        /* ── Overlay / Summary ─────────────────────────────────────────────── */
        .lbk-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15,23,42,.55);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            animation: lbk-fade-bg .25s ease;
        }

        @keyframes lbk-fade-bg {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        .lbk-summary-panel {
            background: #FFFFFF;
            border: 1px solid var(--lbk-border2);
            border-bottom: none;
            border-radius: 24px 24px 0 0;
            padding: 12px clamp(16px, 4vw, 28px) 28px;
            width: 100%;
            max-width: 780px;
            max-height: 82vh;
            overflow-y: auto;
            position: relative;
            animation: lbk-slide-up .3s cubic-bezier(.22,1,.36,1);
            box-shadow: 0 -12px 48px rgba(8,145,178,.12);
        }

        @keyframes lbk-slide-up {
            from { transform: translateY(100%); opacity: 0; }
            to   { transform: translateY(0); opacity: 1; }
        }

        .lbk-summary-handle {
            width: 40px; height: 4px;
            border-radius: 2px;
            background: var(--lbk-border2);
            margin: 0 auto 20px;
        }

        .lbk-close-btn {
            position: absolute;
            top: 16px; right: 20px;
            background: var(--lbk-surface2);
            border: 1px solid var(--lbk-border);
            border-radius: 50%;
            width: 34px; height: 34px;
            color: var(--lbk-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all .15s;
        }

        .lbk-close-btn:hover {
            background: rgba(8,145,178,.06);
            color: var(--lbk-text);
        }

        .lbk-summary-title {
            font-family: var(--lbk-font-head);
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 20px;
            color: var(--lbk-text);
        }

        .lbk-summary-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 12px 0;
            border-bottom: 1px solid var(--lbk-border);
            font-size: 14px;
            gap: 16px;
        }

        .lbk-summary-row:last-of-type { border-bottom: none; }

        .lbk-summary-key {
            color: var(--lbk-muted);
            font-weight: 500;
            white-space: nowrap;
        }

        .lbk-summary-val {
            font-weight: 600;
            color: var(--lbk-text);
            text-align: right;
            max-width: 60%;
        }

        .lbk-confirm-btn {
            width: 100%;
            margin-top: 24px;
            padding: 16px;
            background: linear-gradient(135deg, var(--lbk-accent), #0369A1);
            color: #FFFFFF;
            border: none;
            border-radius: var(--lbk-radius-sm);
            font-family: var(--lbk-font-body);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all .2s ease;
            box-shadow: 0 4px 24px rgba(8,145,178,.3);
            letter-spacing: -.01em;
        }

        .lbk-confirm-btn:hover  {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(8,145,178,.45);
        }

        .lbk-confirm-btn:disabled {
            background: var(--lbk-surface2);
            color: var(--lbk-muted2);
            box-shadow: none;
            transform: none;
            cursor: not-allowed;
        }

        .lbk-confirm-success {
            text-align: center;
            padding: 32px 0;
        }

        .lbk-confirm-success .lbk-tick {
            font-size: 52px;
            display: block;
            margin-bottom: 14px;
            animation: lbk-bounce-in .5s cubic-bezier(.34,1.56,.64,1);
        }

        @keyframes lbk-bounce-in {
            from { transform: scale(0); opacity: 0; }
            to   { transform: scale(1); opacity: 1; }
        }

        .lbk-confirm-success h3 {
            font-family: var(--lbk-font-head);
            font-size: 22px;
            font-weight: 800;
            margin: 0 0 8px;
            background: linear-gradient(90deg, var(--lbk-accent), var(--lbk-accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .lbk-confirm-success p { color: var(--lbk-muted); font-size: 14px; margin: 0; line-height: 1.6; }

        /* ── State boxes ───────────────────────────────────────────────────── */
        .lbk-state-box {
            text-align: center;
            padding: 40px 16px;
            color: var(--lbk-muted);
        }

        .lbk-state-box .lbk-state-icon { font-size: 40px; display: block; margin-bottom: 14px; }
        .lbk-state-box p { font-size: 14px; margin: 0; line-height: 1.6; }

        /* ── Utility ───────────────────────────────────────────────────────── */
        .lbk-hidden { display: none !important; }

        /* ── Responsive: 2-col on tablet ───────────────────────────────────── */
        @media (min-width: 580px) {
            .lbk-providers-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .lbk-tile-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 860px) {
            .lbk-providers-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ── Mobile ────────────────────────────────────────────────────────── */
        @media (max-width: 480px) {
            .lbk-wrap { padding: 20px 12px 48px; }
            .lbk-card { padding: 22px 16px; }

            .lbk-tile-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .lbk-tile { padding: 16px 10px; }
            .lbk-tile-icon { font-size: 24px; }
            .lbk-tile-name { font-size: 12px; }

            .lbk-btn-row { flex-direction: column; }
            .lbk-btn-row .lbk-btn-ghost { order: 2; width: 100%; justify-content: center; }
            .lbk-btn-row .lbk-btn-primary { order: 1; }

            .lbk-summary-panel { padding: 10px 16px 32px; }

            .lbk-skeleton-item { height: 84px; }

            .lbk-orb-1 { width: 240px; height: 240px; }
            .lbk-orb-2 { width: 180px; height: 180px; }

            /* Pagination on mobile: compact */
            .lbk-pagination {
                gap: 4px;
                margin-top: 20px;
                padding-top: 16px;
            }

            .lbk-page-btn,
            .lbk-page-num {
                width: 34px;
                height: 34px;
                min-width: 34px;
                font-size: 12px;
                border-radius: 8px;
            }
        }
       
        /* ── Profile Grid (Step 0) ─────────────────────────────────────────── */
        .lbk-hero-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 4px;
        }

        .lbk-trust-badges {
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex-shrink: 0;
        }

        .lbk-trust-item {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            font-weight: 600;
            color: var(--lbk-muted);
            background: rgba(8,145,178,.05);
            border: 1px solid var(--lbk-border);
            border-radius: 99px;
            padding: 5px 12px;
            white-space: nowrap;
        }

        .lbk-trust-icon { font-size: 14px; }

        .lbk-profile-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 14px;
            margin-top: 20px;
        }

        .lbk-profile-tile {
            position: relative;
            background: var(--lbk-surface);
            border: 1.5px solid var(--lbk-border);
            border-radius: 18px;
            padding: 0;
            overflow: hidden;
            cursor: pointer;
            text-align: left;
            transition: all .22s cubic-bezier(.22,1,.36,1);
            font-family: var(--lbk-font-body);
            display: flex;
            flex-direction: column;
        }

        .lbk-profile-tile:hover {
            border-color: rgba(8,145,178,.45);
            transform: translateY(-4px);
            background: rgba(8,145,178,.04);
            box-shadow: 0 12px 40px rgba(8,145,178,.12), 0 0 0 1px rgba(8,145,178,.15);
        }

        .lbk-profile-tile:hover .lbk-profile-cta {
            background: linear-gradient(135deg, var(--lbk-accent), var(--lbk-accent2));
            color: #fff;
        }

        .lbk-profile-tile--featured {
            border-color: rgba(8,145,178,.35);
            background: linear-gradient(160deg, rgba(8,145,178,.04) 0%, var(--lbk-surface) 60%);
        }

        .lbk-profile-tile--featured:hover {
            border-color: var(--lbk-accent);
            box-shadow: 0 16px 48px rgba(8,145,178,.18), 0 0 0 2px rgba(8,145,178,.2);
        }

        .lbk-featured-badge {
            background: linear-gradient(135deg, var(--lbk-accent), var(--lbk-accent2));
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            padding: 5px 14px;
            text-align: center;
        }

        .lbk-profile-tile-inner {
            display: flex;
            gap: 14px;
            padding: 18px 18px 14px;
            flex: 1;
        }

        .lbk-profile-icon-wrap {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .lbk-pi-blue   { background: rgba(8,145,178,.12); }
        .lbk-pi-orange { background: rgba(234,88,12,.1); }
        .lbk-pi-red    { background: rgba(220,38,38,.1); }
        .lbk-pi-green  { background: rgba(22,163,74,.1); }
        .lbk-pi-purple { background: rgba(124,58,237,.1); }

        .lbk-profile-tile-body {
            flex: 1;
            min-width: 0;
        }

        .lbk-profile-name {
            font-weight: 700;
            font-size: 14px;
            color: var(--lbk-text);
            margin-bottom: 2px;
            line-height: 1.3;
        }

        .lbk-profile-price {
            font-size: 18px;
            font-weight: 800;
            color: var(--lbk-accent);
            margin-bottom: 6px;
            font-variant-numeric: tabular-nums;
        }

        .lbk-profile-desc {
            font-size: 11.5px;
            color: var(--lbk-muted);
            margin: 0 0 8px;
            line-height: 1.5;
        }

        .lbk-profile-tests {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
        }

        .lbk-profile-tests li {
            font-size: 10.5px;
            font-weight: 600;
            color: var(--lbk-accent);
            background: rgba(8,145,178,.08);
            border: 1px solid rgba(8,145,178,.15);
            border-radius: 99px;
            padding: 2px 9px;
        }

        .lbk-profile-cta {
            padding: 11px 18px;
            background: var(--lbk-surface2);
            border-top: 1px solid var(--lbk-border);
            font-size: 13px;
            font-weight: 700;
            color: var(--lbk-accent);
            transition: all .2s ease;
            text-align: right;
            letter-spacing: .01em;
        }

        /* Profile pill on location step */
        .lbk-profile-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(8,145,178,.08);
            border: 1px solid rgba(8,145,178,.2);
            color: var(--lbk-accent);
            border-radius: 99px;
            padding: 7px 16px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .lbk-profile-pill:empty { display: none; }

        /* ── Responsive profile grid ───────────────────────────────────────── */
        @media (min-width: 860px) {
            .lbk-profile-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .lbk-profile-tile--featured {
                grid-column: span 2;
            }

            .lbk-profile-tile--featured .lbk-profile-tile-inner {
                padding: 22px 24px 16px;
            }

            .lbk-profile-tile--featured .lbk-profile-icon-wrap {
                width: 56px;
                height: 56px;
                font-size: 26px;
            }

            .lbk-profile-tile--featured .lbk-profile-name {
                font-size: 16px;
            }

            .lbk-profile-tile--featured .lbk-profile-price {
                font-size: 22px;
            }
        }

        @media (max-width: 580px) {
            .lbk-profile-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .lbk-profile-tile--featured {
                grid-column: 1 / -1;
            }

            .lbk-trust-badges {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .lbk-hero-row {
                flex-direction: column;
                gap: 14px;
            }

            .lbk-profile-tile-inner { gap: 10px; padding: 14px 14px 10px; }
            .lbk-profile-icon-wrap  { width: 38px; height: 38px; font-size: 18px; border-radius: 10px; }
            .lbk-profile-name       { font-size: 12px; }
            .lbk-profile-price      { font-size: 15px; }
            .lbk-profile-desc       { font-size: 11px; }
            .lbk-profile-cta        { font-size: 12px; padding: 9px 14px; }
        }

        @media (max-width: 360px) {
            .lbk-profile-grid { grid-template-columns: 1fr; }
        }

        /* ── Patient Details Form additions ─────────────────────────────── */

        .lbk-patient-back {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            border: none;
            color: var(--lbk-accent);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            padding: 0 0 12px;
            letter-spacing: .01em;
        }
        .lbk-patient-back:hover { opacity: .75; }

        /* Gender tiles inside the overlay */
        .lbk-summary-panel .lbk-tile-grid--sm {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 4px;
        }
        .lbk-summary-panel .lbk-tile-h {
            padding: 10px 8px;
            min-height: 72px;
        }

        /* Address two-column grid on narrow panels */
        @media (max-width: 420px) {
            .lbk-summary-panel [style*="grid-template-columns:1fr 1fr"] {
                grid-template-columns: 1fr !important;
            }
        }

        /* ── No-coverage slot error variant ─────────────────────────────── */
        .lbk-slot-error-box--coverage { text-align: center; }
        .lbk-slot-error-hint {
            font-size: 12px;
            color: var(--lbk-muted);
            margin: 4px 0 10px;
            line-height: 1.5;
        }
        .lbk-slot-switch-btn {
            display: inline-block;
            margin-top: 4px;
            padding: 8px 18px;
            background: var(--lbk-accent);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity .15s;
        }
        .lbk-slot-switch-btn:hover { opacity: .85; }

        /* ── Compact overrides inside the summary panel ──────────────────── */
        .lbk-summary-panel .lbk-field-group   { margin-bottom: 12px; }
        .lbk-summary-panel .lbk-input         { padding: 9px 12px; font-size: 13px; }
        .lbk-summary-panel .lbk-label         { font-size: 12px; margin-bottom: 5px; }
        .lbk-summary-panel .lbk-section-title { font-size: 12px; margin-bottom: 8px; }
        .lbk-summary-panel .lbk-summary-title { font-size: 17px; margin-bottom: 12px; }
        .lbk-summary-panel .lbk-confirm-btn   { margin-top: 14px; padding: 13px; font-size: 15px; }
        .lbk-summary-panel .lbk-summary-row   { padding: 6px 0; }
        .lbk-summary-panel p[style*="font-size:13px"] { font-size: 12px !important; }

        /* ── Multi-patient cards ─────────────────────────────────────────── */
        .lbk-patient-card {
            background: var(--lbk-surface, #fff);
            border: 1px solid var(--lbk-border, #e5e7eb);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 14px;
            transition: box-shadow .2s;
        }
        .lbk-patient-card:focus-within {
            box-shadow: 0 0 0 2px var(--lbk-accent, #5b5ef4)40;
        }
        .lbk-remove-patient {
            background: none;
            border: none;
            color: #ef4444;
            font-size: 16px;
            cursor: pointer;
            padding: 2px 6px;
            border-radius: 6px;
            transition: background .15s;
            line-height: 1;
        }
        .lbk-remove-patient:hover { background: #fee2e2; }
        #lbk-add-patient {
            width: 100%;
            justify-content: center;
            gap: 8px;
            border: 2px dashed var(--lbk-border, #e5e7eb);
            margin-bottom: 20px;
            color: var(--lbk-accent, #5b5ef4);
            font-weight: 600;
            transition: border-color .2s, background .2s;
        }
        #lbk-add-patient:hover {
            border-color: var(--lbk-accent, #5b5ef4);
            background: var(--lbk-accent, #5b5ef4)08;
        }
        .lbk-summary-panel select.lbk-input {
            appearance: auto;
            -webkit-appearance: auto;
            cursor: pointer;
        }
