/* =====================================================================
   MEMBERSHIP REGISTRATION WIZARD – Modern Redesign
   Design: Clean premium fitness brand, usability-first
   ===================================================================== */

/* ─── PAGE SHELL ─────────────────────────────────────────────────────── */
.mr-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f0f4f8;
    font-family: 'DM Sans', sans-serif;
}

/* ─── STICKY HEADER ──────────────────────────────────────────────────── */
.mr-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #0d1b2a;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    padding: 0.75rem 0;
}

.mr-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mr-header-title {
    display: flex;
    align-items: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-transform: uppercase;
}

/* ─── STEP TRACK ─────────────────────────────────────────────────────── */
.mr-steps-track {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}

.mr-steps-track::-webkit-scrollbar { display: none; }

/* Individual step button */
.mr-step-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 4px;
    min-width: 52px;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.mr-step-btn:hover { opacity: 0.85; }
.mr-step-btn.locked { cursor: not-allowed; opacity: 0.45; }

/* Step bubble (number circle) */
.mr-step-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.5);
    background: transparent;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.mr-step-btn.active .mr-step-bubble {
    background: #0086BE;
    border-color: #0086BE;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 134, 190, 0.35);
}

.mr-step-btn.done .mr-step-bubble {
    background: #059669;
    border-color: #059669;
    color: #fff;
}

.mr-step-btn.avail .mr-step-bubble {
    border-color: rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.65);
}

/* Step label */
.mr-step-name {
    font-size: 0.6rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s;
}

.mr-step-btn.active .mr-step-name { color: #5bc8f0; }
.mr-step-btn.done .mr-step-name   { color: #6ee7b7; }
.mr-step-btn.avail .mr-step-name  { color: rgba(255,255,255,0.6); }

/* Connecting line between steps */
.mr-step-line {
    flex: 1 1 auto;
    height: 2px;
    background: rgba(255,255,255,0.15);
    min-width: 8px;
    max-width: 48px;
    border-radius: 1px;
    margin-bottom: 14px; /* align with bubble center */
    transition: background 0.3s;
}

.mr-step-line.done { background: #059669; }

/* ─── MAIN BODY ──────────────────────────────────────────────────────── */
.mr-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1.5rem 0 6rem; /* bottom padding for nav bar */
}

/* ─── STEP CONTENT WRAPPER ───────────────────────────────────────────── */
.mr-step-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Signature steps need full width for pdf viewer */
.mr-step-content--sig {
    max-width: 1200px;
}

/* ─── FADE IN ANIMATION ──────────────────────────────────────────────── */
@keyframes mr-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: mr-fade-in 0.3s ease both;
}

/* ─── STEP INTRO (BADGE + TITLE) ─────────────────────────────────────── */
.mr-step-intro {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
}

.mr-step-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #0086BE;
    opacity: 0.18;
    user-select: none;
    min-width: 3rem;
    letter-spacing: -0.02em;
}

.mr-step-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0d1b2a;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.mr-step-sub {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.2rem 0 0;
}

/* ─── CARDS ──────────────────────────────────────────────────────────── */
.mr-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #e5e7eb;
}

.mr-card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #374151;
    border-left: 3px solid #0086BE;
    padding-left: 0.6rem;
    margin-bottom: 1rem;
}

.mr-card-title .material-icons {
    font-size: 1.1rem;
    color: #0086BE;
}

/* ─── CHILD TOGGLE ───────────────────────────────────────────────────── */
.mr-child-toggle-row {
    padding: 0.25rem 0;
}

/* ─── TRAINING DAY CHIPS ─────────────────────────────────────────────── */
.mr-training-days-section {
    margin-top: 1.25rem;
}

.mr-training-days-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.mr-day-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mr-day-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 2px solid #d1d5db;
    background: #f9fafb;
    color: #6b7280;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.18s ease;
    letter-spacing: 0.02em;
}

.mr-day-chip input[type="checkbox"] {
    display: none;
}

.mr-day-chip:hover {
    border-color: #0086BE;
    color: #0086BE;
    background: #f0f9ff;
}

.mr-day-chip.is-active {
    background: #0086BE;
    border-color: #0086BE;
    color: #ffffff;
}

/* ─── SEPA NOTICE ────────────────────────────────────────────────────── */
.mr-sepa-notice {
    display: flex;
    gap: 1rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 1.25rem;
}

.mr-sepa-notice-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #dbeafe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
}

.mr-sepa-notice-icon .material-icons { font-size: 1.25rem; }

.mr-sepa-notice-body {
    font-size: 0.875rem;
    color: #1e40af;
    line-height: 1.55;
}

.mr-sepa-notice-body strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.mr-sepa-notice-body p { margin: 0 0 0.5rem; }
.mr-sepa-notice-body em { font-size: 0.8rem; opacity: 0.75; }

/* ─── COPY BUTTON ────────────────────────────────────────────────────── */
.mr-copy-btn.mud-button-root {
    border-style: dashed !important;
}

/* ─── SIGNATURE CARD ─────────────────────────────────────────────────── */
.mr-signature-card {
    border-left: 3px solid #0086BE;
}

.mr-employee-sig-card {
    border-left-color: var(--gym-warning, #d97706);
}

.mr-signature-instruction {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 1rem;
    line-height: 1.55;
}

/* ─── MEMBERSHIP LAYOUT (2-column on desktop) ────────────────────────── */
.mr-membership-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 1.25rem;
    align-items: start;
}

.mr-membership-forms {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ─── LIVE PRICE SIDEBAR ─────────────────────────────────────────────── */
.mr-price-sidebar {
    position: sticky;
    top: 130px; /* below the sticky header */
}

.mr-price-card {
    background: #0d1b2a;
    border-radius: 14px;
    padding: 1.5rem;
    color: #ffffff;
}

.mr-price-card-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.4rem;
}

.mr-price-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: #0086BE;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.mr-price-discount-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    padding: 0.2rem 0;
}

.mr-price-discount-val { color: #fca5a5; }

.mr-price-final-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    padding: 0.3rem 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 0.4rem;
}

.mr-price-final-row strong { color: #6ee7b7; font-size: 1rem; }

.mr-price-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0.85rem 0;
}

.mr-price-meta {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mr-price-meta-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}

.mr-price-meta-row .material-icons { color: rgba(255,255,255,0.3); }

/* ─── SIGNATURE STEP LAYOUT ──────────────────────────────────────────── */
.mr-sig-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
}

.mr-sig-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.25rem;
    height: calc(100vh - 260px);
    min-height: 480px;
}

.mr-sig-pdf-panel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.mr-sig-pdf-panel .pdf-preview-section {
    flex: 1;
    min-height: 0;
    height: 100%;
    border: none;
    border-radius: 12px;
    background: #f8f8f8;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
}

.mr-sig-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mr-sig-box {
    flex: 1;
    background: #ffffff;
    border: 2px dashed #0086BE;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 280px;
}

.mr-sig-box.is-confirmed {
    border-style: solid;
    border-color: #059669;
    background: #f0fdf4;
}

.mr-sig-box-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
}

.mr-sig-box .signature-canvas-wrapper {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    min-height: 160px;
}

.mr-sig-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mr-sig-success-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #166534;
}

.mr-sig-success-badge .mud-icon-root { color: #059669; font-size: 1.25rem; }

/* ─── READY BANNER ───────────────────────────────────────────────────── */
.mr-ready-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #064e3b, #065f46);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: #ffffff;
    animation: mr-fade-in 0.4s ease;
}

.mr-ready-banner .mud-icon-root { font-size: 2rem; color: #6ee7b7; flex-shrink: 0; }
.mr-ready-banner div { display: flex; flex-direction: column; gap: 0.2rem; }
.mr-ready-banner strong { font-size: 1rem; }
.mr-ready-banner span { font-size: 0.875rem; opacity: 0.8; }

/* ─── EMAIL TOGGLE ───────────────────────────────────────────────────── */
.mr-email-toggle-row { padding: 0.25rem 0; }

.mr-email-hint {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0.5rem 0 0 2rem;
}

/* ─── SUCCESS STEP ───────────────────────────────────────────────────── */
.mr-success-content {
    align-items: center;
    text-align: center;
    padding-top: 3rem;
}

.mr-success-icon .material-icons {
    font-size: 5rem;
    color: #059669;
    display: block;
    margin-bottom: 1.25rem;
    animation: mr-pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes mr-pop-in {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.mr-success-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #0d1b2a;
    margin: 0 0 0.75rem;
    letter-spacing: 0.01em;
}

.mr-success-desc {
    font-size: 1rem;
    color: #6b7280;
    max-width: 520px;
    line-height: 1.6;
    margin: 0 0 2rem;
}

.mr-success-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mr-success-filename {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
}

/* ─── BOTTOM NAV BAR ─────────────────────────────────────────────────── */
.mr-bottom-nav {
    position: sticky;
    bottom: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 0.875rem 1.5rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.07);
}

.mr-nav-counter {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9ca3af;
}

/* Base nav button */
.mr-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.18s ease;
    line-height: 1;
}

.mr-nav-btn .material-icons { font-size: 1.1rem; }

.mr-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* Back button */
.mr-nav-back {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.mr-nav-back:not(:disabled):hover {
    background: #e5e7eb;
    color: #111827;
}

/* Next button */
.mr-nav-next {
    background: #0086BE;
    color: #ffffff;
    border: 1px solid transparent;
}

.mr-nav-next:hover {
    background: #006a97;
}

/* Submit / Create button */
.mr-nav-submit {
    background: linear-gradient(135deg, #059669, #047857);
    color: #ffffff;
    border: 1px solid transparent;
    padding: 0.6rem 1.75rem;
    gap: 0.5rem;
}

.mr-nav-submit:not(:disabled):hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

.mr-nav-submit:disabled {
    background: #d1d5db;
    color: #9ca3af;
    opacity: 1;
}

/* ─── PDF VIEWER (keep existing functional styles) ───────────────────── */
.pdf-preview-section {
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 1rem;
    min-height: 300px;
}

.pdf-viewer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pdf-page {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    background-color: white;
}

/* ─── SIGNATURE CANVAS (keep existing functional styles) ─────────────── */
.signature-section {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    min-height: 150px;
    max-height: 200px;
}

.signature-canvas-wrapper {
    flex: 1 1 auto;
    border: 2px dashed #0086BE;
    background-color: white;
    border-radius: 8px;
    position: relative;
    min-width: 0;
}

.signature-canvas {
    width: 100%;
    height: 100%;
    cursor: crosshair;
    display: block;
}

.signature-buttons {
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.signature-buttons .mud-button { width: 100%; min-height: 48px; }

/* Confirmed state */
.signature-confirmed {
    border-color: #059669 !important;
    border-style: solid !important;
}

/* Required / pulse state */
.signature-required {
    border-color: #dc2626 !important;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: #dc2626; }
    50%       { border-color: #fca5a5; }
}

/* ─── PDF GENERATING OVERLAY ─────────────────────────────────────────── */
.pdf-generating-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(245,245,245,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 8px;
    backdrop-filter: blur(3px);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
    .mr-membership-layout {
        grid-template-columns: 1fr;
    }

    .mr-price-sidebar {
        position: static;
    }

    .mr-price-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 1.5rem;
        align-items: start;
    }

    .mr-price-card-label { grid-column: 1 / -1; }
    .mr-price-amount { font-size: 2rem; }

    .mr-sig-layout {
        grid-template-columns: 1fr;
        height: auto;
    }

    .mr-sig-pdf-panel {
        height: 50vh;
        min-height: 350px;
    }

    .mr-sig-panel {
        flex-direction: row;
    }

    .mr-sig-box {
        flex: 1;
        min-height: 180px;
    }

    .mr-sig-actions {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .mr-header-inner { padding: 0 1rem; }

    .mr-step-btn { min-width: 40px; }
    .mr-step-bubble { width: 26px; height: 26px; font-size: 0.75rem; }
    .mr-step-name { font-size: 0.55rem; }
    .mr-step-line { max-width: 20px; }

    .mr-step-content { padding: 0 1rem; }
    .mr-step-heading { font-size: 1.3rem; }
    .mr-step-badge { font-size: 2rem; }

    .mr-card { padding: 1rem; }

    .mr-bottom-nav { padding: 0.75rem 1rem; }
    .mr-nav-btn { padding: 0.55rem 0.9rem; font-size: 0.8rem; }
    .mr-nav-counter { display: none; }

    .signature-section {
        flex-direction: column;
        min-height: 250px;
        max-height: 300px;
    }

    .signature-buttons {
        flex: 0 0 auto;
        flex-direction: row;
        width: 100%;
        gap: 1rem;
    }

    .signature-buttons .mud-button { flex: 1; min-height: 44px; }

    .mr-sig-panel { flex-direction: column; }
    .mr-sig-actions { flex-direction: row; }
    .mr-price-card { grid-template-columns: 1fr; }
}

/* ─── ACCESSIBILITY ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .fade-in, .mr-ready-banner, .mr-success-icon .material-icons {
        animation: none !important;
    }
    .mr-nav-submit:not(:disabled):hover { transform: none; }
    * { transition: none !important; }
}

@media (prefers-contrast: high) {
    .mr-header { background: #000; }
    .signature-canvas-wrapper { border: 3px solid #000; }
    .mr-card { border: 2px solid #000; }
}

/* ─── DARK MODE ──────────────────────────────────────────────────────── */
:root[data-theme="dark"] .mr-page {
    background: #111827;
}

:root[data-theme="dark"] .mr-card {
    background: #1f2937;
    border-color: #374151;
}

:root[data-theme="dark"] .mr-step-heading { color: #f9fafb; }
:root[data-theme="dark"] .mr-step-sub { color: #9ca3af; }
:root[data-theme="dark"] .mr-card-title { color: #e5e7eb; }

:root[data-theme="dark"] .mr-bottom-nav {
    background: #1f2937;
    border-color: #374151;
}

:root[data-theme="dark"] .mr-nav-back {
    background: #374151;
    color: #d1d5db;
    border-color: #4b5563;
}

:root[data-theme="dark"] .mr-nav-back:not(:disabled):hover {
    background: #4b5563;
    color: #f9fafb;
}

:root[data-theme="dark"] .signature-canvas-wrapper { background: #fff; }
:root[data-theme="dark"] .pdf-preview-section { background: #374151; }

:root[data-theme="dark"] .mr-sepa-notice {
    background: #1e3a5f;
    border-color: #2563eb;
}

:root[data-theme="dark"] .mr-sepa-notice-body { color: #93c5fd; }
:root[data-theme="dark"] .mr-sepa-notice-icon { background: #1e40af; }

:root[data-theme="dark"] .mr-success-title { color: #f9fafb; }
:root[data-theme="dark"] .mr-success-desc  { color: #9ca3af; }

/* ── Navigation lock overlay ─────────────────────────── */
.mr-nav-lock {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1100;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: not-allowed;
    user-select: none;
}

:root[data-theme="dark"] .mr-nav-lock {
    background: rgba(0, 0, 0, 0.6);
}
