/* _content/TryvonBooking.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* ── Shell layout (matches prototype) ───────────── */
.app-shell[b-09p1y7r9gc] {
    display: flex;
    width: 100vw; height: 100vh;
    overflow: hidden;
    background: var(--bg);
}

/* ── Sidebar ──────────────────────────────────── */
.sidebar[b-09p1y7r9gc] {
    width: 234px; min-width: 234px; height: 100vh;
    background: var(--sidebar);
    display: flex; flex-direction: column;
    border-right: 1px solid var(--sidebar-border);
    z-index: 10;
    transition: background .25s;
    flex-shrink: 0;
}

/* ── Main ─────────────────────────────────────── */
.main[b-09p1y7r9gc] {
    flex: 1; display: flex; flex-direction: column;
    overflow: hidden; min-width: 0;
}

/* ── Topbar ───────────────────────────────────── */
.topbar[b-09p1y7r9gc] {
    height: 58px; background: var(--topbar);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; padding: 0 24px;
    gap: 14px; flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: background .25s, border-color .25s;
}

/* ── Page content area ────────────────────────── */
.page-content[b-09p1y7r9gc] {
    flex: 1; overflow-y: auto;
    padding: 22px 24px;
    background: var(--bg);
    transition: background .25s;
}

/* ── Hamburger (mobile only) ──────────────────── */
.sidebar-toggle[b-09p1y7r9gc] {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 10px 0 0;
    line-height: 1;
    flex-shrink: 0;
}

/* ── Mobile backdrop ──────────────────────────── */
.sidebar-backdrop[b-09p1y7r9gc] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 199;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
    .sidebar-toggle[b-09p1y7r9gc] { display: block; }

    .sidebar[b-09p1y7r9gc] {
        position: fixed;
        left: 0; top: 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform .25s ease;
        z-index: 200;
    }

    .sidebar--open[b-09p1y7r9gc] {
        transform: translateX(0);
    }

    .page-content[b-09p1y7r9gc] { padding: 16px; }
    .topbar-title[b-09p1y7r9gc] { display: none; }
}
/* _content/TryvonBooking.Web/Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu — sidebar always dark, fixed colors */

/* ── Logo ─────────────────────────────────────── */
[b-dv4saycqf9] .sidebar-logo {
    padding: 20px 18px 16px;
    border-bottom: 1px solid var(--sidebar-border);
    display: flex; align-items: center; gap: 11px;
    flex-shrink: 0;
}
[b-dv4saycqf9] .logo-icon {
    width: 38px; height: 38px; border-radius: 11px;
    background: var(--brand-gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; font-weight: 900; color: #fff;
    box-shadow: 0 4px 14px rgba(0,172,193,.4);
    letter-spacing: -1px; flex-shrink: 0;
}
[b-dv4saycqf9] .logo-text { font-size: .95rem; font-weight: 800; color: #fff; letter-spacing: .3px; }
[b-dv4saycqf9] .logo-sub  { font-size: .62rem; color: var(--sidebar-text); font-weight: 500; letter-spacing: .8px; text-transform: uppercase; margin-top: 1px; }

/* ── Sidebar nav — flex:1 pushes footer down ─── */
[b-dv4saycqf9] .sidebar-nav {
    flex: 1;
    padding: 14px 0;
    overflow-y: auto; overflow-x: hidden;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.08) transparent;
}
[b-dv4saycqf9] .sidebar-nav::-webkit-scrollbar { width: 3px; }
[b-dv4saycqf9] .sidebar-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 4px; }

[b-dv4saycqf9] .nav-section {
    padding: 8px 18px 3px;
    font-size: .6rem; font-weight: 700;
    color: #3A4860;
    text-transform: uppercase; letter-spacing: 1.2px;
}

/* ── Nav items ────────────────────────────────── */
[b-dv4saycqf9] .nav-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 18px; margin: 1px 8px; border-radius: 10px;
    color: var(--sidebar-text); font-size: .86rem; font-weight: 500;
    cursor: pointer; transition: all .15s; user-select: none;
    text-decoration: none; border: none; background: transparent;
    width: calc(100% - 16px); text-align: left; line-height: 1.4;
}
[b-dv4saycqf9] .nav-item:hover { background: var(--sidebar-hover); color: #CBD5E0; text-decoration: none; }
[b-dv4saycqf9] .nav-item.active { background: var(--sidebar-active-bg); color: var(--sidebar-text-active); font-weight: 600; }

[b-dv4saycqf9] .nav-icon { font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; line-height: 1; }
[b-dv4saycqf9] .nav-badge {
    background: var(--brand); color: #fff;
    font-size: .6rem; font-weight: 700; padding: 2px 6px; border-radius: 999px;
    flex-shrink: 0;
}
[b-dv4saycqf9] .nav-chevron {
    font-size: .7rem; color: #3A4860; flex-shrink: 0;
    transition: transform .2s; display: inline-block; margin-left: 2px;
}
[b-dv4saycqf9] .nav-chevron.open { transform: rotate(180deg); }

/* ── Dropdown sub-items ───────────────────────── */
[b-dv4saycqf9] .nav-sub { padding-bottom: 4px; }
[b-dv4saycqf9] .nav-sub-item {
    padding-left: 34px; font-size: .82rem; font-weight: 500;
}
[b-dv4saycqf9] .sub-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #3A4860; flex-shrink: 0;
    transition: background .15s;
}
[b-dv4saycqf9] .sub-dot-active { background: #00ACC1; box-shadow: 0 0 0 2px rgba(0,172,193,.2); }

/* ── Footer — anchored at bottom ─────────────── */
[b-dv4saycqf9] .sidebar-footer {
    padding: 12px 14px 14px;
    border-top: 1px solid var(--sidebar-border);
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
}
[b-dv4saycqf9] .avatar {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    background: var(--brand-gradient);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: .8rem;
}
[b-dv4saycqf9] .footer-name {
    font-size: .8rem; font-weight: 600; color: #CBD5E0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
[b-dv4saycqf9] .footer-role { font-size: .63rem; color: var(--sidebar-text); margin-top: 1px; }
[b-dv4saycqf9] .footer-logout {
    flex-shrink: 0;
    color: #3A4860; cursor: pointer; font-size: 16px;
    background: none; border: none; padding: 6px;
    border-radius: 8px; transition: all .15s; line-height: 1;
}
[b-dv4saycqf9] .footer-logout:hover { background: rgba(239,68,68,.12); color: #F87171; }
/* _content/TryvonBooking.Web/Components/Pages/Auth/Login.razor.rz.scp.css */
.login-shell[b-2lvj7n6200] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-app);
    padding: 1.5rem 1rem;
}

.login-card[b-2lvj7n6200] {
    width: 100%;
    max-width: 400px;
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    padding: 2.25rem 2rem;
}

.login-brand[b-2lvj7n6200] {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin-bottom: 1.75rem;
}

.login-brand-icon[b-2lvj7n6200] {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--brand-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: var(--shadow-brand);
}

.login-brand-name[b-2lvj7n6200] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -.01em;
}

.login-title[b-2lvj7n6200] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: .35rem;
}

.login-subtitle[b-2lvj7n6200] {
    font-size: .875rem;
    color: var(--text-3);
    margin-bottom: 1.75rem;
}

.login-btn[b-2lvj7n6200] {
    height: 44px;
    font-size: .9375rem;
    font-weight: 600;
    border-radius: var(--r-md);
    letter-spacing: .01em;
}
/* _content/TryvonBooking.Web/Components/Pages/Auth/RegisterTenant.razor.rz.scp.css */
/* ── Shell & Card ──────────────────────────────────────────────────────── */

.reg-shell[b-mp07xbd52h] {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: var(--surface-app);
    padding: 2rem 1rem 4rem;
}

.reg-card[b-mp07xbd52h] {
    width: 100%;
    max-width: 480px;
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    padding: 2.25rem 2rem;
}

.reg-card.wide[b-mp07xbd52h] {
    max-width: 720px;
    padding: 2.5rem 2.5rem;
}

/* ── Brand ──────────────────────────────────────────────────────────────── */

.reg-brand[b-mp07xbd52h] {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin-bottom: 1.75rem;
}

.reg-brand-icon[b-mp07xbd52h] {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--brand-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: var(--shadow-brand);
    flex-shrink: 0;
}

.reg-brand-name[b-mp07xbd52h] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -.01em;
}

/* ── Header ─────────────────────────────────────────────────────────────── */

.reg-title[b-mp07xbd52h] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: .35rem;
}

.reg-subtitle[b-mp07xbd52h] {
    font-size: .875rem;
    color: var(--text-3);
    margin-bottom: 2rem;
}

/* ── Section blocks ──────────────────────────────────────────────────────── */

.reg-section[b-mp07xbd52h] {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.reg-section:last-of-type[b-mp07xbd52h] {
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.reg-section-header[b-mp07xbd52h] {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    margin-bottom: 1.25rem;
}

.reg-step-num[b-mp07xbd52h] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.reg-section-title[b-mp07xbd52h] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: .2rem;
}

.reg-section-desc[b-mp07xbd52h] {
    font-size: .8125rem;
    color: var(--text-3);
}

/* ── Business Type Cards ──────────────────────────────────────────────────── */

.biz-grid[b-mp07xbd52h] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: .75rem;
}

.biz-card[b-mp07xbd52h] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
    padding: .9rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    background: var(--surface-app);
    cursor: pointer;
    text-align: left;
    transition: border-color .15s, background .15s, box-shadow .15s;
}

.biz-card:hover[b-mp07xbd52h] {
    border-color: var(--brand);
    background: var(--surface-card);
}

.biz-card.selected[b-mp07xbd52h] {
    border-color: var(--brand);
    background: color-mix(in srgb, var(--brand) 8%, var(--surface-card));
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
}

.biz-icon[b-mp07xbd52h] {
    font-size: 1.5rem;
    margin-bottom: .2rem;
}

.biz-name[b-mp07xbd52h] {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-1);
    line-height: 1.3;
}

.biz-desc[b-mp07xbd52h] {
    font-size: .75rem;
    color: var(--text-3);
    line-height: 1.35;
}

.biz-chips[b-mp07xbd52h] {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    margin-top: .4rem;
}

.biz-chip[b-mp07xbd52h] {
    font-size: .68rem;
    font-weight: 500;
    padding: .15rem .45rem;
    border-radius: 99px;
    background: color-mix(in srgb, var(--brand) 12%, transparent);
    color: var(--brand);
    letter-spacing: .01em;
}

/* ── Operating Mode Cards ─────────────────────────────────────────────────── */

.mode-grid[b-mp07xbd52h] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}

.mode-card[b-mp07xbd52h] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
    padding: .9rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    background: var(--surface-app);
    cursor: pointer;
    text-align: left;
    transition: border-color .15s, background .15s, box-shadow .15s;
}

.mode-card:hover[b-mp07xbd52h] {
    border-color: var(--brand);
    background: var(--surface-card);
}

.mode-card.selected[b-mp07xbd52h] {
    border-color: var(--brand);
    background: color-mix(in srgb, var(--brand) 8%, var(--surface-card));
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
}

.mode-icon[b-mp07xbd52h] {
    font-size: 1.35rem;
    margin-bottom: .15rem;
}

.mode-name[b-mp07xbd52h] {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-1);
}

.mode-desc[b-mp07xbd52h] {
    font-size: .75rem;
    color: var(--text-3);
    line-height: 1.4;
}

/* ── Field Grid ──────────────────────────────────────────────────────────── */

.reg-field-group[b-mp07xbd52h] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .875rem;
}

.reg-field[b-mp07xbd52h] {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.reg-field.full[b-mp07xbd52h] {
    grid-column: 1 / -1;
}

.reg-label[b-mp07xbd52h] {
    font-size: .8125rem;
    font-weight: 500;
    color: var(--text-2);
}

.reg-input[b-mp07xbd52h] {
    height: 40px;
    padding: 0 .75rem;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--surface-app);
    color: var(--text-1);
    font-size: .875rem;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}

.reg-input:focus[b-mp07xbd52h] {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
}

.reg-hint[b-mp07xbd52h] {
    font-size: .75rem;
    color: var(--text-3);
}

.req[b-mp07xbd52h] {
    color: var(--danger, #e53e3e);
}

/* ── Submit Button ──────────────────────────────────────────────────────── */

.reg-submit[b-mp07xbd52h] {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: var(--r-md);
    background: var(--brand-gradient);
    color: #fff;
    font-size: .9375rem;
    font-weight: 600;
    letter-spacing: .01em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: opacity .15s, transform .1s;
    box-shadow: var(--shadow-brand);
}

.reg-submit:hover:not(:disabled)[b-mp07xbd52h] {
    opacity: .9;
    transform: translateY(-1px);
}

.reg-submit:disabled[b-mp07xbd52h] {
    opacity: .65;
    cursor: not-allowed;
}

/* ── Spinner ────────────────────────────────────────────────────────────── */

.spinner[b-mp07xbd52h] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-mp07xbd52h .6s linear infinite;
}

@keyframes spin-b-mp07xbd52h {
    to { transform: rotate(360deg); }
}

/* ── Success Screen ──────────────────────────────────────────────────────── */

.success-icon[b-mp07xbd52h] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-brand);
}

.success-title[b-mp07xbd52h] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-1);
    text-align: center;
    margin-bottom: .35rem;
}

.success-sub[b-mp07xbd52h] {
    font-size: .875rem;
    color: var(--text-3);
    text-align: center;
    margin-bottom: 1.5rem;
}

.success-detail[b-mp07xbd52h] {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 1rem;
}

.success-row[b-mp07xbd52h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .625rem .875rem;
    border-bottom: 1px solid var(--border);
}

.success-row:last-child[b-mp07xbd52h] {
    border-bottom: none;
}

.success-label[b-mp07xbd52h] {
    font-size: .8125rem;
    color: var(--text-3);
}

.success-value[b-mp07xbd52h] {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-1);
}

.success-slug[b-mp07xbd52h] {
    font-family: monospace;
    font-size: .875rem;
    color: var(--brand);
}

.alert-sms[b-mp07xbd52h] {
    font-size: .8125rem;
    color: var(--text-2);
    background: color-mix(in srgb, var(--brand) 8%, var(--surface-app));
    border: 1px solid color-mix(in srgb, var(--brand) 20%, transparent);
    border-radius: var(--r-md);
    padding: .625rem .875rem;
    margin-bottom: 1.5rem;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
    .reg-card.wide[b-mp07xbd52h] {
        padding: 1.75rem 1.25rem;
    }

    .biz-grid[b-mp07xbd52h] {
        grid-template-columns: 1fr 1fr;
    }

    .mode-grid[b-mp07xbd52h] {
        grid-template-columns: 1fr;
    }

    .reg-field-group[b-mp07xbd52h] {
        grid-template-columns: 1fr;
    }

    .reg-field.full[b-mp07xbd52h] {
        grid-column: 1;
    }
}
/* _content/TryvonBooking.Web/Components/Pages/Cancel/CancelPage.razor.rz.scp.css */
.cancel-page[b-m6kcq6kfks] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-app);
    padding: 2rem;
}

.cancel-card[b-m6kcq6kfks] {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.cancel-icon-warn[b-m6kcq6kfks] {
    font-size: 3rem;
    margin-bottom: .5rem;
    color: var(--clr-warning);
}

.cancel-icon[b-m6kcq6kfks] {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: .5rem;
}

.cancel-card--success .cancel-icon[b-m6kcq6kfks] { color: var(--clr-success); }
.cancel-card--error   .cancel-icon[b-m6kcq6kfks] { color: var(--clr-danger); }

.cancel-card h2[b-m6kcq6kfks] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--text-1);
}

.cancel-card p[b-m6kcq6kfks] {
    color: var(--text-2);
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.cancel-note[b-m6kcq6kfks] {
    font-size: 0.875rem;
    color: var(--text-3) !important;
    margin-top: 1rem !important;
}

/* Confirm actions */
.cancel-actions[b-m6kcq6kfks] {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.75rem;
}

.cancel-btn[b-m6kcq6kfks] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: opacity .15s;
}

.cancel-btn:disabled[b-m6kcq6kfks] { opacity: .6; cursor: not-allowed; }

.cancel-btn--danger[b-m6kcq6kfks] {
    background: var(--clr-danger);
    color: #fff;
}

.cancel-btn--danger:hover:not(:disabled)[b-m6kcq6kfks] { opacity: .85; }

.cancel-btn--ghost[b-m6kcq6kfks] {
    background: var(--surface-hover);
    color: var(--text-2);
    border: 1px solid var(--border);
}

.cancel-btn--ghost:hover[b-m6kcq6kfks] { background: var(--border); color: var(--text-1); }

.cancel-spinner-sm[b-m6kcq6kfks] {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-m6kcq6kfks .8s linear infinite;
    display: inline-block;
}

@keyframes spin-b-m6kcq6kfks {
    to { transform: rotate(360deg); }
}
/* _content/TryvonBooking.Web/Components/Shared/LanguageSwitcher.razor.rz.scp.css */
/* LanguageSwitcher scoped CSS — uses prototype class names */

.lang-dropdown[b-pf7z51phzf] { position: relative; }

.lang-btn[b-pf7z51phzf] {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 9px; border: 1.5px solid var(--border);
    background: var(--card); color: var(--text-2); font-size: .8rem; font-weight: 600;
    cursor: pointer; transition: all .15s; user-select: none; font-family: inherit;
}
.lang-btn:hover[b-pf7z51phzf] { border-color: var(--brand); color: var(--brand); }

.lang-flag[b-pf7z51phzf] { font-size: 16px; }

.lang-menu[b-pf7z51phzf] {
    position: absolute; right: 0; top: calc(100% + 6px);
    background: var(--card); border: 1px solid var(--border); border-radius: 12px;
    box-shadow: var(--shadow-lg); min-width: 180px; z-index: 9999;
    overflow: hidden; display: none;
}
.lang-dropdown.open .lang-menu[b-pf7z51phzf] { display: block; animation: fadeIn .1s ease; }

.lang-opt[b-pf7z51phzf] {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; font-size: .83rem; color: var(--text-2); cursor: pointer;
    transition: background .1s;
}
.lang-opt:hover[b-pf7z51phzf]  { background: var(--hover-bg); }
.lang-opt.active[b-pf7z51phzf] { color: var(--brand); font-weight: 600; background: var(--brand-soft); }
