/* ═══════════════════════════════════════════════════════════════
   LSB Public — Radical Storage-style UI
   ═══════════════════════════════════════════════════════════════ */
:root {
    --lsb-blue:    #1a3a5c;
    --lsb-teal:    #0d9488;
    --lsb-light:   #f0f7f7;
    --lsb-border:  #e2e8f0;
    --lsb-text:    #1e293b;
    --lsb-muted:   #64748b;
    --lsb-green:   #16a34a;
    --lsb-red:     #dc2626;
    --lsb-gold:    #f0a500;
    --lsb-radius:  10px;
    --lsb-shadow:  0 1px 6px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
}

.lsb-wrap { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--lsb-text); }

/* ── Badges ──────────────────────────────────────────────────── */
.lsb-badge { padding:2px 10px; border-radius:20px; font-size:12px; font-weight:600; text-transform:uppercase; display:inline-block; }
.lsb-badge-paid, .lsb-badge-active { background:#dcfce7; color:#15803d; }
.lsb-badge-pending { background:#fef9c3; color:#854d0e; }
.lsb-badge-confirmed { background:#dbeafe; color:#1d4ed8; }
.lsb-badge-failed, .lsb-badge-rejected, .lsb-badge-suspended { background:#fee2e2; color:#991b1b; }
.lsb-badge-cancelled { background:#f1f5f9; color:#475569; }
.lsb-open  { color: var(--lsb-green); }
.lsb-closed { color: var(--lsb-red); }

/* ── Alerts ──────────────────────────────────────────────────── */
.lsb-alert { padding:12px 16px; border-radius:var(--lsb-radius); margin:12px 0; font-size:14px; }
.lsb-alert-error { background:#fee2e2; border:1px solid #fca5a5; color:#991b1b; }
.lsb-alert-warning { background:#fef9c3; border:1px solid #fde047; color:#854d0e; }
.lsb-alert-success { background:#dcfce7; border:1px solid #86efac; color:#15803d; }
.lsb-error { color:var(--lsb-red); font-size:13px; margin-top:5px; min-height:18px; }

/* ── Spinner ─────────────────────────────────────────────────── */
.lsb-spinner { width:16px;height:16px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:lsb-spin .7s linear infinite;display:inline-block;vertical-align:middle; }
@keyframes lsb-spin { to { transform:rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════════
   LOCATION LIST
   ═══════════════════════════════════════════════════════════════ */
.lsb-list-wrap { max-width:800px; margin:0 auto; padding:20px; }
.lsb-list-title { font-size:24px; font-weight:700; color:var(--lsb-blue); margin-bottom:20px; }
.lsb-location-cards { display:flex; flex-direction:column; gap:12px; }
.lsb-location-card {
    display:flex; justify-content:space-between; align-items:center;
    background:#fff; border:1.5px solid var(--lsb-border); border-radius:var(--lsb-radius);
    padding:18px 20px; text-decoration:none; color:var(--lsb-text);
    transition:border-color .2s, box-shadow .2s;
}
.lsb-location-card:hover { border-color:var(--lsb-teal); box-shadow:var(--lsb-shadow); }
.lsb-lc-info { display:flex; flex-direction:column; gap:3px; }
.lsb-lc-info strong { font-size:16px; color:var(--lsb-blue); }
.lsb-lc-info span { font-size:13px; color:var(--lsb-muted); }
.lsb-lc-hours { font-size:13px; font-weight:500; }
.lsb-lc-price { display:flex; flex-direction:column; align-items:flex-end; gap:2px; }
.lsb-lc-from { font-size:11px; color:var(--lsb-muted); text-transform:uppercase; }
.lsb-lc-price strong { font-size:20px; color:var(--lsb-blue); font-weight:700; }
.lsb-lc-per { font-size:11px; color:var(--lsb-muted); }
.lsb-lc-arrow { font-size:18px; color:var(--lsb-teal); margin-top:4px; }

/* ═══════════════════════════════════════════════════════════════
   DETAIL + BOOKING WIDGET
   ═══════════════════════════════════════════════════════════════ */
.lsb-detail-wrap {
    display:grid;
    grid-template-columns:1fr 380px;
    gap:32px;
    max-width:1100px;
    margin:0 auto;
    padding:24px 20px;
    align-items:start;
}
@media(max-width:860px){ .lsb-detail-wrap { grid-template-columns:1fr; } }

/* ── Left column ─────────────────────────────────────────────── */
.lsb-detail-left { min-width:0; }
.lsb-back-link { font-size:14px; color:var(--lsb-teal); text-decoration:none; display:inline-block; margin-bottom:16px; }
.lsb-back-link:hover { text-decoration:underline; }

.lsb-mini-map { width:100%; height:200px; border-radius:var(--lsb-radius); overflow:hidden; margin-bottom:20px; }

.lsb-detail-title { font-size:24px; font-weight:700; color:var(--lsb-blue); margin:0 0 8px; }
.lsb-detail-hours { font-size:14px; font-weight:500; margin:0 0 12px; }
.lsb-detail-desc { font-size:15px; color:var(--lsb-muted); margin:0 0 20px; line-height:1.6; }

/* Accordion */
.lsb-accordion { border:1.5px solid var(--lsb-border); border-radius:var(--lsb-radius); overflow:hidden; }
.lsb-acc-item { border-bottom:1px solid var(--lsb-border); }
.lsb-acc-item:last-child { border-bottom:none; }
.lsb-acc-item summary {
    padding:14px 18px; cursor:pointer; font-weight:600; font-size:15px;
    list-style:none; display:flex; justify-content:space-between; align-items:center;
    user-select:none;
}
.lsb-acc-item summary::-webkit-details-marker { display:none; }
.lsb-acc-item summary::after { content:'›'; font-size:18px; color:var(--lsb-muted); transition:transform .2s; }
.lsb-acc-item[open] summary::after { transform:rotate(90deg); }
.lsb-acc-item > *:not(summary) { padding:0 18px 16px; }
.lsb-how-list, .lsb-items-list { margin:0; padding-left:20px; font-size:14px; line-height:2; }
.lsb-items-list { list-style:none; padding-left:0; }
.lsb-hours-table { width:100%; font-size:14px; border-collapse:collapse; }
.lsb-hours-table td { padding:5px 0; }
.lsb-hours-table td:first-child { color:var(--lsb-muted); width:120px; }
.lsb-today-row td { font-weight:700; color:var(--lsb-blue); }

/* ── Right column: booking widget ───────────────────────────── */
.lsb-booking-widget {
    position:sticky; top:20px;
    background:#fff; border:1.5px solid var(--lsb-border);
    border-radius:var(--lsb-radius); padding:24px;
    box-shadow:var(--lsb-shadow);
}

/* Date fields */
.lsb-widget-dates { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:12px; }
.lsb-widget-date-field { display:flex; flex-direction:column; gap:4px; }
.lsb-widget-date-field label { font-size:12px; font-weight:600; color:var(--lsb-muted); text-transform:uppercase; letter-spacing:.4px; }
.lsb-widget-date-field input[type=date],
.lsb-widget-date-field input[type=time] {
    border:1.5px solid var(--lsb-border); border-radius:6px;
    padding:8px 10px; font-size:14px; width:100%; box-sizing:border-box;
    color:var(--lsb-text);
}
.lsb-widget-date-field input:focus { outline:none; border-color:var(--lsb-teal); }

/* Bags trigger */
.lsb-bags-trigger {
    width:100%; display:flex; align-items:center; gap:10px;
    background:#fff; border:1.5px solid var(--lsb-border); border-radius:6px;
    padding:10px 14px; cursor:pointer; font-size:14px; margin-bottom:16px;
    transition:border-color .2s;
}
.lsb-bags-trigger:hover { border-color:var(--lsb-teal); }
.lsb-bags-trigger > span:first-child { font-size:18px; }
.lsb-bags-trigger > span:nth-child(2) { flex:1; text-align:left; font-weight:500; }
.lsb-edit-link { font-size:13px; color:var(--lsb-teal); font-weight:600; text-decoration:underline; }

/* Price details */
.lsb-price-details { background:var(--lsb-light); border-radius:8px; padding:16px; margin-bottom:16px; }
.lsb-price-details h3 { font-size:15px; font-weight:700; margin:0 0 12px; color:var(--lsb-blue); }
.lsb-price-line { display:flex; justify-content:space-between; font-size:14px; padding:4px 0; color:var(--lsb-muted); }
.lsb-price-total-row { display:flex; justify-content:space-between; font-size:16px; font-weight:700; padding-top:10px; margin-top:8px; border-top:1.5px solid var(--lsb-border); color:var(--lsb-blue); }
.lsb-protection-row { display:flex; align-items:flex-start; gap:10px; padding:8px 0; border-top:1px solid var(--lsb-border); font-size:13px; cursor:pointer; }
.lsb-protection-row input { margin-top:2px; }
.lsb-protection-row > span:nth-child(2) { flex:1; display:flex; flex-direction:column; }
.lsb-protection-row small { color:var(--lsb-muted); }
#lsb-protection-total { font-weight:600; }

/* Customer fields */
.lsb-customer-fields { display:flex; flex-direction:column; gap:10px; margin-bottom:14px; }
.lsb-field { display:flex; flex-direction:column; gap:4px; }
.lsb-field label { font-size:13px; font-weight:600; color:var(--lsb-text); }
.lsb-field input, .lsb-field textarea, .lsb-field select {
    border:2px solid #cbd5e1; border-radius:6px;
    padding:9px 12px; font-size:14px; width:100%; box-sizing:border-box;
    color:var(--lsb-text); background:#fff;
}
.lsb-field input:focus, .lsb-field textarea:focus { outline:none; border-color:var(--lsb-teal); box-shadow:0 0 0 3px rgba(13,148,136,.1); }
.lsb-field textarea { resize:vertical; }

/* Stripe card */
.lsb-card-input { border:1.5px solid var(--lsb-border); border-radius:6px; padding:11px 12px; background:#fff; }

/* Reserve button */
.lsb-reserve-btn {
    width:100%; background:var(--lsb-teal); color:#fff; border:none;
    border-radius:var(--lsb-radius); padding:15px; font-size:16px; font-weight:700;
    cursor:pointer; transition:background .2s; display:flex; align-items:center;
    justify-content:center; gap:8px;
}
.lsb-reserve-btn:hover:not(:disabled) { background:#0f766e; }
.lsb-reserve-btn:disabled { background:#94a3b8; cursor:not-allowed; }
.lsb-secure-note { text-align:center; font-size:12px; color:var(--lsb-muted); margin:8px 0 0; }

/* ═══════════════════════════════════════════════════════════════
   BAG SELECTOR MODAL
   ═══════════════════════════════════════════════════════════════ */
.lsb-bag-modal-overlay {
    position:fixed; inset:0; background:rgba(0,0,0,.45);
    z-index:99999; display:flex; align-items:center; justify-content:center;
    padding:20px;
}
.lsb-bag-modal-content {
    background:#fff; border-radius:14px; width:100%; max-width:460px;
    max-height:90vh; overflow-y:auto; padding:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.2);
}
.lsb-bag-modal-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:4px; }
.lsb-bag-modal-header h3 { margin:0; font-size:20px; color:var(--lsb-blue); }
.lsb-bag-modal-close { background:none; border:none; font-size:26px; cursor:pointer; color:var(--lsb-muted); padding:0; line-height:1; }
.lsb-bag-modal-sub { font-size:13px; color:var(--lsb-teal); margin:0 0 16px; }

.lsb-bag-type-list { display:flex; flex-direction:column; gap:10px; }
.lsb-bag-type-item {
    display:flex; align-items:center; gap:14px;
    background:#f8fafc; border:1.5px solid var(--lsb-border);
    border-radius:10px; padding:14px 16px;
}
.lsb-bt-icon { font-size:32px; flex-shrink:0; }
.lsb-bt-details { flex:1; display:flex; flex-direction:column; gap:2px; }
.lsb-bt-details strong { font-size:15px; color:var(--lsb-blue); }
.lsb-bt-details span { font-size:13px; color:var(--lsb-muted); }
.lsb-bt-price { font-size:14px; font-weight:700; color:var(--lsb-text); }

.lsb-qty-ctrl { display:flex; align-items:center; gap:8px; flex-shrink:0; }
.lsb-qty-minus, .lsb-qty-plus {
    width:36px; height:36px; border-radius:8px; border:2px solid #94a3b8;
    background:#fff; font-size:20px; cursor:pointer; display:flex;
    align-items:center; justify-content:center; line-height:1;
    color:var(--lsb-blue); font-weight:600; transition:all .15s;
    -webkit-tap-highlight-color:transparent; user-select:none;
}
.lsb-qty-minus:hover, .lsb-qty-plus:hover { border-color:var(--lsb-teal); background:var(--lsb-light); color:var(--lsb-teal); }
.lsb-qty-minus:active, .lsb-qty-plus:active { background:var(--lsb-teal); color:#fff; border-color:var(--lsb-teal); transform:scale(0.93); }
.lsb-qty-minus:disabled { border-color:#e2e8f0; color:#cbd5e1; background:#f8fafc; cursor:not-allowed; opacity:1; }
.lsb-qty-val { min-width:28px; text-align:center; font-size:17px; font-weight:700; color:var(--lsb-blue); }

.lsb-bag-modal-save {
    width:100%; background:var(--lsb-teal); color:#fff; border:none;
    border-radius:var(--lsb-radius); padding:14px; font-size:16px; font-weight:700;
    cursor:pointer; margin-top:20px; transition:background .2s;
}
.lsb-bag-modal-save:hover { background:#0f766e; }

/* ═══════════════════════════════════════════════════════════════
   BOOKING CONFIRMATION
   ═══════════════════════════════════════════════════════════════ */
.lsb-success-wrap { max-width:640px; margin:0 auto; padding:24px 20px; text-align:center; }
.lsb-success-icon { font-size:56px; background:#dcfce7; width:88px; height:88px; border-radius:50%; line-height:88px; margin:0 auto 16px; color:var(--lsb-green); }
.lsb-title { font-size:26px; font-weight:700; color:var(--lsb-blue); margin:0 0 10px; }
.lsb-booking-card { background:#f8fafc; border:1.5px solid var(--lsb-border); border-radius:var(--lsb-radius); padding:24px; margin:24px 0; text-align:left; }
.lsb-booking-top { display:flex; gap:20px; align-items:flex-start; margin-bottom:20px; flex-wrap:wrap; }
.lsb-booking-ref-block { flex:1; display:flex; flex-direction:column; gap:4px; }
.lsb-ref-label { font-size:11px; text-transform:uppercase; color:var(--lsb-muted); letter-spacing:.5px; }
.lsb-ref-code { font-size:30px; color:var(--lsb-blue); letter-spacing:2px; font-weight:700; }
.lsb-ref-sub { font-size:12px; color:var(--lsb-muted); }
.lsb-qr-block { display:flex; flex-direction:column; align-items:center; gap:6px; }
.lsb-qr-block img { border:3px solid var(--lsb-border); border-radius:8px; }
.lsb-qr-label { font-size:11px; color:var(--lsb-muted); }
.lsb-detail-table { width:100%; border-collapse:collapse; }
.lsb-detail-table td { padding:8px 0; border-bottom:1px solid var(--lsb-border); font-size:14px; }
.lsb-detail-table td:first-child { color:var(--lsb-muted); width:40%; }
.lsb-success-instructions { background:#fff; border:1.5px solid var(--lsb-border); border-radius:var(--lsb-radius); padding:20px; margin:20px 0; text-align:left; }
.lsb-success-instructions h3 { margin:0 0 12px; color:var(--lsb-blue); }
.lsb-success-instructions ol { padding-left:20px; margin:0; }
.lsb-success-instructions li { margin-bottom:8px; font-size:14px; line-height:1.6; }
.lsb-insurance-note { font-size:13px; color:var(--lsb-muted); margin:12px 0 0; }
.lsb-btn-outline { background:#fff; color:var(--lsb-blue); border:2px solid var(--lsb-blue); border-radius:var(--lsb-radius); padding:10px 24px; cursor:pointer; font-size:15px; font-weight:600; transition:all .2s; }
.lsb-btn-outline:hover { background:var(--lsb-blue); color:#fff; }
.lsb-directions-button { display:inline-flex; align-items:center; justify-content:center; gap:8px; margin:0 0 4px; padding:13px 20px; border-radius:var(--lsb-radius); background:#f59e0b; color:#111827!important; font-weight:800; text-decoration:none; }
.lsb-directions-button:hover { background:#fbbf24; color:#111827!important; }

/* ═══════════════════════════════════════════════════════════════
   PARTNER DASHBOARD
   ═══════════════════════════════════════════════════════════════ */
.lsb-wrap { max-width:900px; margin:0 auto; padding:20px; }
.lsb-stats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:28px; }
@media(max-width:600px){ .lsb-stats-grid { grid-template-columns:1fr 1fr; } }
.lsb-stat-card { background:#fff; border:1.5px solid var(--lsb-border); border-radius:var(--lsb-radius); padding:18px; text-align:center; }
.lsb-stat-card.lsb-stat-highlight { border-color:var(--lsb-teal); }
.lsb-stat-card.lsb-stat-balance { border-color:var(--lsb-green); background:#f0fdf4; }
.lsb-stat-value { font-size:26px; font-weight:700; color:var(--lsb-blue); }
.lsb-stat-label { font-size:12px; color:var(--lsb-muted); margin-top:4px; }
.lsb-tabs { display:flex; gap:4px; border-bottom:2px solid var(--lsb-border); margin:24px 0 0; }
.lsb-tab-btn { padding:10px 18px; border:none; background:none; cursor:pointer; font-size:15px; font-weight:600; color:var(--lsb-muted); border-bottom:3px solid transparent; margin-bottom:-2px; transition:all .2s; }
.lsb-tab-btn:hover { color:var(--lsb-blue); }
.lsb-tab-active { color:var(--lsb-blue) !important; border-bottom-color:var(--lsb-blue) !important; }
.lsb-tab-content { padding:20px 0; }
.lsb-table-wrap { overflow-x:auto; }
.lsb-table { width:100%; border-collapse:collapse; font-size:14px; }
.lsb-table th { background:var(--lsb-blue); color:#fff; padding:10px 14px; text-align:left; font-weight:600; }
.lsb-table td { padding:10px 14px; border-bottom:1px solid var(--lsb-border); vertical-align:top; }
.lsb-table tbody tr:hover { background:#f8fafc; }
.lsb-empty { color:var(--lsb-muted); font-style:italic; padding:20px 0; }
.lsb-payout-box { background:var(--lsb-light); border-radius:var(--lsb-radius); padding:20px; margin-bottom:20px; }
.lsb-profile-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:16px 0; }
.lsb-profile-grid div { background:var(--lsb-light); padding:14px; border-radius:var(--lsb-radius); }
.lsb-profile-grid strong { display:block; font-size:11px; color:var(--lsb-muted); text-transform:uppercase; margin-bottom:4px; }
.lsb-profile-note { font-size:13px; color:var(--lsb-muted); margin-top:16px; }

/* Partner and City Operator dashboards
   Shared visual system for the two authenticated role dashboards. */
.lsb-wrap#lsb-dashboard-wrap,
.lsb-operator-dashboard {
    --lsb-dashboard-surface:#ffffff;
    --lsb-dashboard-soft:#f6fafb;
    max-width:1180px;
    margin:32px auto;
    padding:clamp(18px,3vw,36px);
    border:1px solid var(--lsb-border);
    border-radius:20px;
    background:var(--lsb-dashboard-surface);
    box-shadow:0 18px 50px rgba(15,42,61,.10);
}
.lsb-dashboard-header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin:-1px 0 26px;
    padding:0 0 22px;
    border-bottom:1px solid var(--lsb-border);
}
.lsb-dashboard-header .lsb-title {
    margin:0;
    font-size:clamp(24px,3vw,34px);
    letter-spacing:-.035em;
}
.lsb-dashboard-logout {
    flex:0 0 auto;
    padding:9px 14px;
    border:1px solid #cbd5e1;
    border-radius:8px;
    color:var(--lsb-blue);
    font-size:14px;
    font-weight:700;
    text-decoration:none;
}
.lsb-dashboard-logout:hover,
.lsb-dashboard-logout:focus { border-color:var(--lsb-teal); background:#eefbf9; color:var(--lsb-teal); }
.lsb-operator-dashboard > .lsb-alert { margin:-8px 0 20px; }
.lsb-wrap#lsb-dashboard-wrap .lsb-stats-grid,
.lsb-operator-dashboard .lsb-stats-grid {
    grid-template-columns:repeat(auto-fit,minmax(155px,1fr));
    gap:14px;
    margin:0 0 28px;
}
.lsb-wrap#lsb-dashboard-wrap .lsb-stat-card,
.lsb-operator-dashboard .lsb-stat-card {
    position:relative;
    overflow:hidden;
    min-height:116px;
    padding:20px 16px 17px;
    border-radius:14px;
    border-color:#dbe7ea;
    background:linear-gradient(145deg,#fff,#f7fbfb);
    text-align:start;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:space-between;
    box-shadow:0 2px 8px rgba(15,42,61,.04);
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.lsb-wrap#lsb-dashboard-wrap .lsb-stat-card:hover,
.lsb-operator-dashboard .lsb-stat-card:hover { transform:translateY(-2px); border-color:#a8d7d3; box-shadow:0 10px 22px rgba(15,42,61,.10); }
.lsb-wrap#lsb-dashboard-wrap .lsb-stat-card::before,
.lsb-operator-dashboard .lsb-stat-card::before { content:''; position:absolute; inset:0 auto 0 0; width:4px; background:#cbd5e1; }
.lsb-wrap#lsb-dashboard-wrap .lsb-stat-card.lsb-stat-highlight::before,
.lsb-operator-dashboard .lsb-stat-card.lsb-stat-highlight::before { background:var(--lsb-teal); }
.lsb-wrap#lsb-dashboard-wrap .lsb-stat-card.lsb-stat-balance,
.lsb-operator-dashboard .lsb-stat-card.lsb-stat-balance { background:linear-gradient(145deg,#f0fdf7,#fff); border-color:#b7e4c7; }
.lsb-wrap#lsb-dashboard-wrap .lsb-stat-card.lsb-stat-balance::before,
.lsb-operator-dashboard .lsb-stat-card.lsb-stat-balance::before { background:var(--lsb-green); }
.lsb-wrap#lsb-dashboard-wrap .lsb-stat-value,
.lsb-operator-dashboard .lsb-stat-value { font-size:clamp(24px,2.4vw,32px); letter-spacing:-.045em; line-height:1.1; overflow-wrap:anywhere; }
.lsb-wrap#lsb-dashboard-wrap .lsb-stat-label,
.lsb-operator-dashboard .lsb-stat-label { order:-1; margin:0; font-weight:700; letter-spacing:.06em; line-height:1.35; }
.lsb-wrap#lsb-dashboard-wrap .lsb-tabs,
.lsb-operator-dashboard .lsb-tabs { gap:8px; margin:2px 0 0; padding:7px; border:0; border-radius:12px; background:var(--lsb-dashboard-soft); overflow-x:auto; }
.lsb-wrap#lsb-dashboard-wrap .lsb-tab-btn,
.lsb-operator-dashboard .lsb-tab-btn { flex:1 0 max-content; margin:0; padding:11px 16px; border-radius:8px; border:0; font-size:14px; }
.lsb-wrap#lsb-dashboard-wrap .lsb-tab-btn:hover,
.lsb-operator-dashboard .lsb-tab-btn:hover { background:#e7f4f3; color:var(--lsb-teal); }
.lsb-wrap#lsb-dashboard-wrap .lsb-tab-active,
.lsb-operator-dashboard .lsb-tab-active { background:var(--lsb-blue); color:#fff!important; border:0!important; box-shadow:0 4px 10px rgba(26,58,92,.20); }
.lsb-wrap#lsb-dashboard-wrap .lsb-tab-content,
.lsb-operator-dashboard .lsb-tab-content { padding:28px 0 4px; }
.lsb-wrap#lsb-dashboard-wrap .lsb-tab-content > h3,
.lsb-operator-dashboard .lsb-tab-content > h3 { margin:0 0 8px; font-size:20px; color:var(--lsb-blue); }
.lsb-wrap#lsb-dashboard-wrap .lsb-tab-content > p,
.lsb-operator-dashboard .lsb-tab-content > p { color:var(--lsb-muted); }
.lsb-wrap#lsb-dashboard-wrap .lsb-table-wrap,
.lsb-operator-dashboard .lsb-table-wrap { margin-top:18px; border:1px solid var(--lsb-border); border-radius:12px; }
.lsb-wrap#lsb-dashboard-wrap .lsb-table th,
.lsb-operator-dashboard .lsb-table th { background:#edf5f6; color:var(--lsb-blue); font-size:11px; letter-spacing:.055em; text-transform:uppercase; }
.lsb-wrap#lsb-dashboard-wrap .lsb-table td,
.lsb-operator-dashboard .lsb-table td { padding:14px; }
.lsb-wrap#lsb-dashboard-wrap .lsb-table tbody tr:nth-child(even),
.lsb-operator-dashboard .lsb-table tbody tr:nth-child(even) { background:#fbfdfd; }
.lsb-wrap#lsb-dashboard-wrap .lsb-payout-box,
.lsb-operator-dashboard .lsb-payout-box { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px 20px; padding:24px; border:1px solid #bce0dc; border-radius:14px; background:linear-gradient(135deg,#eefbf9,#f8fcfc); }
.lsb-wrap#lsb-dashboard-wrap .lsb-payout-box p,
.lsb-operator-dashboard .lsb-payout-box p { margin:0; color:var(--lsb-muted); }
.lsb-wrap#lsb-dashboard-wrap #lsb-payout-form-wrap,
.lsb-operator-dashboard .lsb-tab-content form { grid-column:1/-1; margin-top:10px; }
.lsb-wrap#lsb-dashboard-wrap .lsb-field,
.lsb-operator-dashboard .lsb-tab-content label { display:block; margin:0 0 14px; font-size:13px; font-weight:700; color:var(--lsb-blue); }
.lsb-wrap#lsb-dashboard-wrap .lsb-field input,
.lsb-wrap#lsb-dashboard-wrap .lsb-field textarea,
.lsb-operator-dashboard .lsb-tab-content input,
.lsb-operator-dashboard .lsb-tab-content textarea { margin-top:6px; border:1.5px solid #cbdce0; border-radius:8px; padding:11px 12px; background:#fff; }
.lsb-wrap#lsb-dashboard-wrap .lsb-profile-grid,
.lsb-operator-dashboard .lsb-profile-grid { grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:12px; }
.lsb-wrap#lsb-dashboard-wrap .lsb-profile-grid div,
.lsb-operator-dashboard .lsb-profile-grid div { border:1px solid #e0ecee; border-radius:10px; background:#fbfdfd; padding:16px; }
.lsb-operator-dashboard .lsb-profile-grid p { margin:0; }
.lsb-operator-dashboard .lsb-operator-form > p { margin:0 0 14px; }
.lsb-operator-dashboard .lsb-report-filter { display:flex; flex-wrap:wrap; align-items:end; gap:12px; margin:18px 0; padding:16px; border:1px solid var(--lsb-border); border-radius:12px; background:#fbfdfd; }
.lsb-operator-dashboard .lsb-report-filter label { margin:0; min-width:160px; }
.lsb-operator-dashboard .lsb-report-filter .lsb-btn { margin-bottom:0; }
.lsb-operator-dashboard .lsb-report-summary { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
@media (max-width:600px) { .lsb-operator-dashboard .lsb-report-filter label { width:100%; } .lsb-operator-dashboard .lsb-report-summary { grid-template-columns:1fr; } }
.lsb-wrap#lsb-dashboard-wrap .lsb-empty,
.lsb-operator-dashboard .lsb-empty { margin:18px 0; padding:24px; border:1px dashed #bfd0d5; border-radius:12px; background:#fbfdfd; text-align:center; }
@media(max-width:640px){
    .lsb-wrap#lsb-dashboard-wrap,.lsb-operator-dashboard { margin:16px auto; padding:18px; border-radius:14px; }
    .lsb-dashboard-header { align-items:flex-start; gap:12px; margin-bottom:20px; padding-bottom:17px; }
    .lsb-dashboard-header .lsb-title { font-size:25px; }
    .lsb-wrap#lsb-dashboard-wrap .lsb-stats-grid,.lsb-operator-dashboard .lsb-stats-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .lsb-wrap#lsb-dashboard-wrap .lsb-stat-card,.lsb-operator-dashboard .lsb-stat-card { min-height:96px; padding:15px 12px; }
    .lsb-wrap#lsb-dashboard-wrap .lsb-payout-box,.lsb-operator-dashboard .lsb-payout-box { grid-template-columns:1fr; padding:18px; }
}
@media(prefers-reduced-motion:reduce){.lsb-wrap#lsb-dashboard-wrap .lsb-stat-card,.lsb-operator-dashboard .lsb-stat-card{transition:none;}}

/* Partner reporting controls and paginated history. */
.lsb-wrap#lsb-dashboard-wrap .lsb-report-heading{display:flex;justify-content:space-between;align-items:flex-start;gap:18px;margin-bottom:16px}.lsb-wrap#lsb-dashboard-wrap .lsb-report-heading h3{margin:0;font-size:20px;color:var(--lsb-blue)}.lsb-wrap#lsb-dashboard-wrap .lsb-report-heading p{margin:6px 0 0;color:var(--lsb-muted)}.lsb-report-total{min-width:180px;padding:13px 16px;border:1px solid #bce0dc;border-radius:12px;background:#f0fbf9}.lsb-report-total span,.lsb-report-total small{display:block;color:var(--lsb-muted);font-size:12px}.lsb-report-total strong{display:block;margin:3px 0;font-size:23px;color:var(--lsb-teal)}.lsb-report-filters{display:flex;flex-wrap:wrap;align-items:flex-end;gap:12px;padding:15px 16px;margin:0 0 18px;border:1px solid var(--lsb-border);border-radius:12px;background:var(--lsb-dashboard-soft)}.lsb-report-filters p{margin:0}.lsb-report-filters label{display:block;margin:0 0 5px;font-size:12px;font-weight:700;color:var(--lsb-muted);letter-spacing:.04em;text-transform:uppercase}.lsb-report-filters input{min-height:39px;padding:7px 9px;border:1px solid #cbd5e1;border-radius:7px;background:#fff}.lsb-report-actions{display:flex;gap:8px}.lsb-report-actions .lsb-btn{min-height:39px;padding:8px 13px}.lsb-dashboard-pagination{margin-top:18px}.lsb-dashboard-pagination .page-numbers{display:flex;flex-wrap:wrap;gap:5px;margin:0;padding:0;list-style:none}.lsb-dashboard-pagination .page-numbers li{margin:0}.lsb-dashboard-pagination .page-numbers a,.lsb-dashboard-pagination .page-numbers .current{display:block;min-width:31px;padding:5px 8px;border:1px solid var(--lsb-border);border-radius:6px;color:var(--lsb-blue);text-align:center;text-decoration:none}.lsb-dashboard-pagination .page-numbers .current{border-color:var(--lsb-teal);background:var(--lsb-teal);color:#fff}@media(max-width:640px){.lsb-wrap#lsb-dashboard-wrap .lsb-report-heading{display:block}.lsb-report-total{margin-top:14px}.lsb-report-filters{display:grid;grid-template-columns:1fr}.lsb-report-filters input{width:100%}.lsb-report-actions{display:flex}.lsb-report-actions .lsb-btn{flex:1;text-align:center}}
.lsb-wrap#lsb-dashboard-wrap .lsb-profile-grid .lsb-profile-wide{grid-column:1/-1}.lsb-location-pricing{width:100%;margin-top:10px;border-collapse:collapse;font-size:14px}.lsb-location-pricing th,.lsb-location-pricing td{padding:10px;text-align:left;border-bottom:1px solid #dbe7ea}.lsb-location-pricing th{color:var(--lsb-muted);font-size:11px;letter-spacing:.05em;text-transform:uppercase}.lsb-location-pricing tr:last-child td{border-bottom:0}.lsb-wrap#lsb-dashboard-wrap .lsb-profile-grid .lsb-commission-explainer{border-color:#bce0dc;background:#f0fbf9}.lsb-commission-explainer .lsb-agreed-share{margin:6px 0 0;font-size:28px;font-weight:700;line-height:1.2;color:var(--lsb-teal)}@media(max-width:640px){.lsb-location-pricing{font-size:13px}.lsb-location-pricing th,.lsb-location-pricing td{padding:8px 5px}}

/* ═══════════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════════ */
@media print {
    .lsb-btn-outline, .lsb-back-link { display:none; }
    .lsb-booking-card { border:2px solid #000 !important; }
}

/* ═══════════════════════════════════════════════════════════════
   SEARCH WIZARD  [lsb_search]
   ═══════════════════════════════════════════════════════════════ */
.lsb-search-wrapper { max-width:520px; }
.lsb-search-style-hero { max-width:680px; margin:0 auto; }

.lsb-wizard { font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif; }

/* Step 1 — search bar */
.lsb-wiz-step-1 { }
.lsb-wiz-search-row {
    display:flex; align-items:center; gap:10px;
    background:#fff; border:1.5px solid var(--lsb-border,#e2e8f0);
    border-radius:50px; padding:10px 14px 10px 18px;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
}
.lsb-search-style-hero .lsb-wiz-search-row { padding:14px 18px 14px 24px; }
.lsb-wiz-search-icon { font-size:18px; flex-shrink:0; }
.lsb-wiz-city-input {
    flex:1; border:none; outline:none; font-size:16px;
    color:#1e293b; background:transparent;
}
.lsb-wiz-city-input::placeholder { color:#94a3b8; }
.lsb-wiz-search-btn {
    background:#0d9488; color:#fff; border:none; border-radius:40px;
    padding:9px 20px; font-size:14px; font-weight:700; cursor:pointer;
    white-space:nowrap; transition:background .2s; flex-shrink:0;
}
.lsb-wiz-search-btn:hover { background:#0f766e; }

/* City list dropdown */
.lsb-wiz-city-list {
    list-style:none; margin:6px 0 0; padding:6px 0;
    background:#fff; border:1.5px solid var(--lsb-border,#e2e8f0);
    border-radius:14px; box-shadow:0 8px 32px rgba(0,0,0,.12);
    max-height:260px; overflow-y:auto;
}
.lsb-wiz-city-option {
    display:flex; align-items:center; gap:10px; padding:12px 18px;
    cursor:pointer; font-size:15px; transition:background .15s;
}
.lsb-wiz-city-option:hover, .lsb-wiz-city-option:focus { background:#f0fdfa; outline:none; }
.lsb-wiz-city-icon { font-size:18px; flex-shrink:0; }
.lsb-wiz-city-option small { margin-left:auto; font-size:12px; color:#94a3b8; }

/* Trust badges */
.lsb-wiz-badges {
    display:flex; flex-wrap:wrap; gap:12px; margin-top:14px;
    font-size:13px; color:#64748b;
}
.lsb-wiz-badges span { display:flex; align-items:center; gap:4px; }

/* Luggage Storage hub: a search hero with a responsive editorial visual. */
.lsb-search-hub{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(300px,.95fr);gap:clamp(28px,5vw,72px);align-items:center;max-width:1180px;margin:0 auto;}
.lsb-search-hub-image{min-width:0;min-height:340px;}
.lsb-search-hub-image img{display:block;width:100%;height:100%;min-height:340px;object-fit:cover;object-position:center;}
.lsb-search-style-hub .lsb-wiz-badges{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:18px;}
.lsb-search-style-hub .lsb-wiz-badges span{min-height:54px;padding:9px 10px;align-items:flex-start;border:1px solid var(--lsb-border);border-radius:10px;background:#fff;color:var(--lsb-muted);font-size:12px;line-height:1.35;}
.lsb-search-style-hub .lsb-wiz-badges i{margin-top:1px;color:var(--lsb-teal);}
.lsb-search-style-hub .lsb-wiz-badges .fa-star{color:#f59e0b;}
@media(max-width:760px){.lsb-search-hub{display:flex;flex-direction:column;gap:22px;width:100%;}.lsb-search-hub-image{order:-1;width:100%;min-height:220px;border-radius:18px;}.lsb-search-hub-image img{min-height:220px;max-height:280px;}.lsb-search-style-hub{width:100%;}.lsb-search-style-hub .lsb-wiz-badges{grid-template-columns:1fr;gap:8px;margin-top:14px;}.lsb-search-style-hub .lsb-wiz-badges span{min-height:0;padding:10px 12px;align-items:center;}}

/* Steps 2 & 3 — card UI */
.lsb-wiz-step-2, .lsb-wiz-step-3 {
    background:#f1f5f9; border-radius:20px; overflow:hidden;
    box-shadow:0 4px 24px rgba(0,0,0,.10);
}
.lsb-wiz-selected-row {
    display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    padding:14px 18px; background:#fff; border-bottom:1px solid #e2e8f0;
}
.lsb-wiz-back {
    background:#f1f5f9; border:none; border-radius:50%;
    width:32px; height:32px; font-size:18px; cursor:pointer;
    color:#64748b; line-height:1; display:flex; align-items:center; justify-content:center;
    flex-shrink:0; transition:background .15s;
}
.lsb-wiz-back:hover { background:#e2e8f0; }
.lsb-wiz-summary-pill {
    display:flex; align-items:center; gap:6px;
    background:#f8fafc; border:1px solid #e2e8f0;
    border-radius:8px; padding:5px 12px; font-size:13px;
}
.lsb-wiz-pill-label { color:#94a3b8; font-size:11px; text-transform:uppercase; letter-spacing:.4px; }
.lsb-wiz-summary-pill strong { color:#1e293b; }

.lsb-wiz-card {
    background:#fff; margin:12px; border-radius:14px;
    padding:20px; box-shadow:0 1px 4px rgba(0,0,0,.06);
}
.lsb-wiz-card-title { margin:0 0 18px; font-size:20px; font-weight:700; color:#1e293b; }

/* Date grid — no emoji icons, full-width tap targets */
.lsb-wiz-date-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.lsb-wiz-date-col { display:flex; flex-direction:column; gap:8px; }
.lsb-wiz-date-col label { font-size:13px; font-weight:600; color:#64748b; }
/* Full-width date input — entire field is the tap target */
.lsb-wiz-date-full {
    width:100%; box-sizing:border-box;
    border:1.5px solid #e2e8f0; border-radius:10px;
    padding:12px 14px; font-size:15px; color:#1e293b;
    background:#fff; cursor:pointer; min-height:48px;
    -webkit-appearance:none; appearance:none;
}
.lsb-wiz-date-full:focus { outline:none; border-color:#0d9488; }
/* Full-width time select */
.lsb-wiz-time-full {
    width:100%; border:1.5px solid #e2e8f0; border-radius:10px;
    padding:12px 14px; font-size:15px; color:#1e293b;
    background:#fff; cursor:pointer; min-height:48px;
    -webkit-appearance:none; appearance:none;
}
.lsb-wiz-time-full:focus { outline:none; border-color:#0d9488; }
/* Select-based time picker */
.lsb-wiz-time-select {
    appearance:none; -webkit-appearance:none;
    background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
    padding-right:38px;
    cursor:pointer;
    color:#1e293b;
}
.lsb-wiz-time-select:focus {
    outline:2px solid #0d9488;
    outline-offset:2px;
    border-color:#0d9488;
}
/* When no time selected, show placeholder colour */
.lsb-wiz-time-select:invalid,
.lsb-wiz-time-select option[value=""] {
    color:#94a3b8;
}
/* Small label above time select */
.lsb-wiz-time-label {
    font-size:12px !important;
    font-weight:600;
    color:#94a3b8 !important;
    text-transform:uppercase;
    letter-spacing:.04em;
    margin-top:2px !important;
}

/* Bags — per-type rows */
.lsb-wiz-card-sub { font-size:13px; color:#0d9488; margin:-8px 0 14px; }
.lsb-wiz-bag-row {
    display:flex; justify-content:space-between; align-items:center;
    gap:14px; padding:12px 0; border-bottom:1px solid #f1f5f9;
}
.lsb-wiz-bag-row:last-child { border-bottom:none; }
.lsb-wiz-bag-info { display:flex; flex-direction:column; gap:2px; }
.lsb-wiz-bag-info strong { font-size:15px; color:#1e293b; }
.lsb-wiz-bag-info span { font-size:12px; color:#64748b; }
.lsb-wiz-qty-ctrl { display:flex; align-items:center; gap:10px; flex-shrink:0; }
/* Square buttons with rounded corners — not oval */
.lsb-wiz-qty-btn {
    width:40px; height:40px; border-radius:8px;
    background:#0d9488; color:#fff; border:none;
    font-size:20px; font-weight:400; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    transition:background .15s; line-height:1; flex-shrink:0;
}
.lsb-wiz-qty-btn:hover { background:#0f766e; }
.lsb-wiz-qty-btn:disabled { background:#e2e8f0; color:#94a3b8; cursor:not-allowed; }
.lsb-wiz-qty-val { font-size:18px; font-weight:700; color:#1e293b; min-width:28px; text-align:center; }

/* Footer */
.lsb-wiz-footer {
    display:flex; justify-content:space-between; align-items:center;
    padding:14px 16px; background:#f1f5f9;
}
.lsb-wiz-clear {
    background:none; border:none; font-size:13px;
    color:#64748b; cursor:pointer; text-decoration:underline; padding:0;
}
.lsb-wiz-btn-primary {
    background:#0d9488; color:#fff; border:none; border-radius:10px;
    padding:12px 24px; font-size:15px; font-weight:700; cursor:pointer;
    transition:background .2s; display:flex; align-items:center; gap:6px;
}
.lsb-wiz-btn-primary:hover { background:#0f766e; }

@media(max-width:480px) {
    .lsb-wiz-date-grid { grid-template-columns:1fr; }
    .lsb-wiz-search-btn { display:none; }
}
/* Results rendered after [lsb_search] when this page is also the configured
   search destination. Keeps the live map/booking flow visually separated. */
.lsb-search-results{max-width:1180px;margin:32px auto 64px;padding:0 20px;scroll-margin-top:24px}
.lsb-search-empty{padding:22px 24px;margin:0 0 20px;background:#fff8eb;border:1px solid #f0d8a7;border-radius:12px;color:#684c12}.lsb-search-empty p{margin:8px 0 0;color:#7d6230}
@media(max-width:640px){.lsb-search-results{margin:24px auto 40px;padding:0 14px}}

/* Map search and direct booking are task-focused interfaces. On phones they
   intentionally escape Astra's article gutter, giving the map and booking
   controls the full viewport width while preserving readable inner padding. */
@media(max-width:640px){
    .entry-content > .lsb-search-results{
        width:100vw;
        max-width:none;
        margin:20px calc(50% - 50vw) 36px;
        padding:0;
    }
    .entry-content > .lsb-search-results #lsb-map-wrap{
        border-radius:0;
    }
    .entry-content > .lsb-search-results #lsb-map-container{
        height:320px;
    }
    .entry-content > .lsb-detail-wrap{
        width:100vw;
        max-width:none;
        margin:0 calc(50% - 50vw);
        padding:16px;
    }
    .lsb-detail-wrap .lsb-booking-widget{
        position:static;
        padding:18px 16px;
    }
}

/* Reusable full-bleed treatment for the interactive marketplace UI. This is
   deliberately component-based rather than page-based: city landing pages,
   search result pages, and future pages embedding the same shortcodes all get
   the same useful map and booking width on phones. */
@media(max-width:640px){
    #lsb-map-wrap{
        width:100vw !important;
        max-width:none !important;
        margin-left:calc(50% - 50vw) !important;
        margin-right:calc(50% - 50vw) !important;
        border-radius:0 !important;
    }
    #lsb-map-container{height:320px !important;}
    .lsb-detail-wrap{
        width:100vw;
        max-width:none;
        margin-left:calc(50% - 50vw);
        margin-right:calc(50% - 50vw);
        padding:16px;
    }
}

/* Search wizard containment: this widget is used inside narrow homepage cards
   as well as full-width pages. Native date/select controls must never force a
   column wider than its card. */
.lsb-search-wrapper{container-type:inline-size;min-width:0}
.lsb-wizard,.lsb-wiz-step,.lsb-wiz-card,.lsb-wiz-date-col{min-width:0}
.lsb-wiz-date-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.lsb-wiz-date-full,.lsb-wiz-time-full,.lsb-wiz-time-select{box-sizing:border-box;min-width:0;max-width:100%}
.lsb-wiz-selected-row{min-width:0}.lsb-wiz-summary-pill{min-width:0;max-width:100%}.lsb-wiz-summary-pill strong{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
/* The homepage hero card is deliberately compact: stack date fields rather
   than clipping the checkout field or its browser calendar control. */
.lsb-home-search-card .lsb-wiz-date-grid{grid-template-columns:1fr}
@container (max-width:420px){
  .lsb-wiz-date-grid{grid-template-columns:1fr}
  .lsb-wiz-card{margin:10px;padding:16px}
  .lsb-wiz-footer{padding:12px}
  .lsb-wiz-btn-primary{padding:12px 18px}
}
@media(max-width:480px){
  .lsb-wiz-bag-row{align-items:flex-start;flex-direction:column}
  .lsb-wiz-qty-ctrl{width:100%;justify-content:flex-end}
}
