/* ─── Design Tokens ─────────────────────────────────────── */
:root {
    --primary:      #10284A;
    --primary-deep: #0A1C35;
    --primary-lt:   #EBF0F7;
    --primary-mid:  #B8C9DF;
    --accent:       #F9660A;
    --accent-lt:    #FFF1E9;
    --accent-glow:  rgba(249,102,10,.18);
    --secondary:    #F9660A;
    --secondary-lt: #FFF1E9;
    --dark:         #080F1C;
    --body-bg:      #F4F6F9;
    --surface:      #FFFFFF;
    --border:       rgba(16,40,74,.10);
    --border-light: rgba(255,255,255,.12);
    --text:         #1A2740;
    --text-muted:   #637489;
    --danger:       #EF4444;
    --transition:   .22s cubic-bezier(.4,0,.2,1);
    --sidebar-w:    260px;
    --nav-h:        68px;
    --ease:         cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

/* ─── Topbar ─────────────────────────────────────────────── */
.bca-topbar {
    background: var(--primary-deep);
    height: 34px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.bca-topbar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.bca-topbar-marquee {
    font-size: 11.5px;
    color: rgba(255,255,255,.55);
    letter-spacing: .04em;
    white-space: nowrap;
    overflow: hidden;
    flex: 1;
}
.bca-topbar-marquee span {
    display: inline-block;
    animation: bca-marquee 32s linear infinite;
}
.bca-topbar-marquee em { color: var(--accent); font-style: normal; font-weight: 500; }
@keyframes bca-marquee {
    0%   { transform: translateX(60%); }
    100% { transform: translateX(-100%); }
}
.bca-topbar-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.bca-topbar-links a {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: color .2s;
}
.bca-topbar-links a:hover { color: var(--accent); }
.bca-topbar-sep { width: 1px; height: 12px; background: rgba(255,255,255,.12); }

/* ─── Main Navbar ────────────────────────────────────────── */
.main-navbar-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-navbar-wrap .navbar {
    background: rgba(255,255,255,.93) !important;
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    padding: 0;
    transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.main-navbar-wrap.scrolled .navbar {
    background: rgba(255,255,255,.98) !important;
    box-shadow: 0 4px 32px rgba(16,40,74,.09);
}
.main-navbar-wrap .container {
    max-width: 1320px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

/* ── Logo ────────────────────────────────────────────────── */
.navbar-brand.site-main-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-right: 8px;
    flex-shrink: 0;
    text-decoration: none;
}
.bca-logo-mark {
    width: 36px; height: 36px;
    background: var(--primary);
    border-radius: 10px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.bca-logo-mark::after {
    content: '';
    position: absolute;
    bottom: -5px; right: -5px;
    width: 16px; height: 16px;
    background: var(--accent);
    border-radius: 50%;
}
.bca-logo-mark img {
    position: relative;
    z-index: 1;
    width: 22px; height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.bca-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.bca-logo-text strong {
    font-weight: 800;
    font-size: 15px;
    color: var(--primary);
    letter-spacing: -.02em;
    display: block;
}
.bca-logo-text span {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 400;
}

/* ── Desktop centre area ─────────────────────────────────── */
.bca-desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.categories-nav-item-wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}
.nav-categories-item { position: relative; }
.browse-categories-nav-link {
    display: flex !important;
    align-items: center;
    gap: 7px;
    padding: 0 14px !important;
    height: 38px;
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    transition: background .2s var(--ease), transform .15s !important;
    white-space: nowrap;
    text-decoration: none !important;
}
.browse-categories-nav-link:hover {
    background: var(--accent) !important;
    transform: translateY(-1px);
    color: #fff !important;
}
.bca-cat-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.browse-categories-nav-link:hover .bca-cat-dot { background: rgba(255,255,255,.6); }

/* ── Categories dropdown ────────────────────────────── */
/* ── Mega Menu Layout ───────────────────────────────── */
.categories-menu {
    display: none;
    position: absolute !important;
    top: calc(100% + 4px) !important;
    left: 0 !important;
    z-index: 99999 !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15) !important;
    width: 680px !important;
    height: auto !important;
    overflow: hidden !important;
    padding: 0 !important;
    flex-direction: row !important;
}

.nav-categories-item:hover .categories-menu {
    display: flex !important;
}

/* Left column — category list */
.bca-mega-left {
    width: 240px !important;
    min-width: 240px !important;
    border-right: 1px solid #f0f0f0 !important;
    padding: 8px 0 !important;
    overflow-y: auto !important;
    max-height: 460px !important;
    background: #fafafa !important;
}

.categories-ul-first {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.categories-ul-first > li > a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 16px !important;
    color: #1a1a1a !important;
    font-size: 13.5px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    border-left: 3px solid transparent !important;
    transition: all 0.15s !important;
}

.categories-ul-first > li > a:hover,
.categories-ul-first > li > a.active {
    background: var(--secondary) !important;
    color: var(--white) !important;
    border-left-color: var(--primary, #0066cc) !important;
}

.categories-ul-first > li > a .ml-auto {
    margin-left: auto !important;
    font-size: 11px !important;
    color: #aaa !important;
}

/* Right column — course preview */
.bca-mega-right {
    flex: 1 !important;
    padding: 16px !important;
    max-height: 460px !important;
    overflow-y: auto !important;
    background: #fff !important;
}

.bca-mega-right-title {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: #999 !important;
    margin-bottom: 12px !important;
}

.bca-mega-courses {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.bca-mega-course-card {
    display: flex !important;
    gap: 10px !important;
    align-items: flex-start !important;
    text-decoration: none !important;
    padding: 8px !important;
    border-radius: 8px !important;
    transition: background 0.15s !important;
    border: 1px solid transparent !important;
}

.bca-mega-course-card:hover {
    background: #f4f7ff !important;
    border-color: #e0e8ff !important;
}

.bca-mega-course-thumb {
    width: 52px !important;
    height: 38px !important;
    border-radius: 5px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    background: #e5e7eb !important;
}

.bca-mega-course-info {
    flex: 1 !important;
}

.bca-mega-course-title {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    line-height: 1.35 !important;
    margin-bottom: 3px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.bca-mega-course-meta {
    font-size: 11px !important;
    color: #888 !important;
}

.bca-mega-loading {
    text-align: center !important;
    padding: 30px 0 !important;
    color: #aaa !important;
    font-size: 13px !important;
}

.bca-mega-empty {
    text-align: center !important;
    padding: 30px 0 !important;
    color: #bbb !important;
    font-size: 13px !important;
}

.bca-mega-view-all {
    display: block !important;
    margin-top: 14px !important;
    text-align: center !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: var(--primary, #0066cc) !important;
    text-decoration: none !important;
    padding: 8px !important;
    border-radius: 6px !important;
    border: 1px solid var(--primary, #0066cc) !important;
    transition: all 0.15s !important;
}

.bca-mega-view-all:hover {
    background: var(--primary, #0066cc) !important;
    color: #fff !important;
}

/* Desktop mega-menu */
.categories-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 760px;
    max-width: calc(100vw - 48px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(16,40,74,.13), 0 4px 16px rgba(16,40,74,.06);
    display: grid;
    grid-template-columns: 200px 1fr;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.98);
    transform-origin: top left;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
    z-index: 999;
}
.nav-categories-item:hover .categories-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.categories-ul-first {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    background: var(--primary-deep);
    overflow-y: auto;
    max-height: 420px;
}
.categories-ul-first > li > a {
    display: flex !important;
    align-items: center;
    gap: 9px;
    padding: 10px 16px !important;
    font-size: 13px !important;
    font-weight: 500;
    color: rgba(255,255,255,.6) !important;
    text-decoration: none !important;
    border-left: 3px solid transparent;
    transition: background .15s, color .15s, border-color .15s;
}
.categories-ul-first > li > a:hover,
.categories-ul-first > li:hover > a {
    background: rgba(255,255,255,.07);
    color: #fff !important;
    border-left-color: var(--accent);
}
.categories-ul-first > li > a .la {
    width: 26px; height: 26px;
    border-radius: 7px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}
.categories-ul-first > li > a .la-angle-right {
    background: transparent !important;
    margin-left: auto;
    font-size: 11px;
    width: auto !important; height: auto !important;
    color: rgba(255,255,255,.3);
}
.categories-ul-first > li:first-child > a {
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 4px;
    padding-bottom: 13px !important;
    color: rgba(255,255,255,.85) !important;
}
.level-sub {
    position: absolute;
    left: 200px; top: 0;
    width: calc(760px - 200px);
    min-height: 100%;
    list-style: none;
    padding: 20px;
    margin: 0;
    background: var(--surface);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    align-content: start;
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s;
}
.categories-ul-first > li:hover .level-sub {
    opacity: 1;
    visibility: visible;
}
.level-sub li a {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 9px 12px !important;
    border-radius: 9px;
    font-size: 13px !important;
    color: var(--text) !important;
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: background .15s, color .15s, border-color .15s;
}
.level-sub li a::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
.level-sub li a:hover {
    background: var(--primary-lt);
    color: var(--primary) !important;
    border-color: rgba(16,40,74,.1);
}

/* ── Search ──────────────────────────────────────────────── */
.header-search-wrap {
    flex: 1;
    max-width: 420px;
    position: relative;
}
.header-search-wrap .form-inline { position: relative; width: 100%; }
.header-search-wrap input.form-control {
    width: 100%;
    height: 40px;
    padding: 0 44px 0 16px !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 10px !important;
    font-size: 13.5px;
    color: var(--text);
    background: var(--body-bg) !important;
    box-shadow: none !important;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.header-search-wrap input.form-control::placeholder { color: var(--text-muted); }
.header-search-wrap input.form-control:focus {
    border-color: var(--primary) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(16,40,74,.07) !important;
}
.header-search-btn {
    position: absolute !important;
    right: 6px; top: 50%;
    transform: translateY(-50%);
    width: 30px !important; height: 30px !important;
    min-width: unset !important;
    padding: 0 !important;
    border: none !important;
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: 7px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    cursor: pointer;
    transition: background .2s;
}
.header-search-btn:hover { background: var(--accent) !important; }
.header-search-btn .la { font-size: 16px; line-height: 1; }

/* ── Desktop right actions ───────────────────────────────── */
.bca-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}
.mini-cart-item { position: relative; list-style: none; }
.mini-cart-item > a,
.mini-cart-item .cart-nav-link {
    width: 40px !important; height: 40px !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 10px !important;
    background: var(--body-bg) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--text) !important;
    padding: 0 !important;
    transition: border-color .2s, background .2s;
}
.mini-cart-item > a:hover,
.mini-cart-item .cart-nav-link:hover {
    border-color: var(--primary) !important;
    background: var(--primary-lt) !important;
}
.btn-login-outline {
    height: 38px !important;
    padding: 0 16px !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 10px !important;
    background: transparent !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    transition: border-color .2s, color .2s, background .2s;
    white-space: nowrap;
}
.btn-login-outline:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    background: var(--primary-lt) !important;
}
.btn-theme-primary {
    height: 38px !important;
    padding: 0 18px !important;
    border: none !important;
    border-radius: 10px !important;
    background: var(--accent) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #fff !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(249,102,10,.3);
    white-space: nowrap;
    transition: transform .15s, box-shadow .2s !important;
}
.btn-theme-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(255,255,255,.15),transparent);
    opacity: 0;
    transition: opacity .2s;
}
.btn-theme-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249,102,10,.4) !important;
    color: #fff !important;
}
.btn-theme-primary:hover::before { opacity: 1; }

/* Profile dropdown */
.nav-item-user-profile { position: relative; list-style: none; }
.profile-dropdown-toogle {
    display: flex !important;
    align-items: center;
    padding: 0 !important;
    text-decoration: none !important;
}
.top-nav-user-name img,
.top-nav-user-name > * {
    width: 38px !important; height: 38px !important;
    border-radius: 10px !important;
    border: 2px solid var(--border) !important;
    object-fit: cover;
    display: block;
    transition: border-color .2s, transform .15s;
}
.profile-dropdown-toogle:hover .top-nav-user-name img,
.profile-dropdown-toogle:hover .top-nav-user-name > * {
    border-color: var(--accent) !important;
    transform: scale(1.05);
}
.profile-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(16,40,74,.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(.97);
    transform-origin: top right;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav-item-user-profile:hover .profile-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.profile-dropdown-userinfo {
    padding: 14px 16px !important;
    border-bottom: 1px solid var(--border);
    background: var(--body-bg) !important;
}
.profile-dropdown-userinfo p {
    font-weight: 700;
    font-size: 13.5px;
    color: var(--text);
    margin: 0;
}
.profile-dropdown-userinfo small { font-size: 12px; color: var(--text-muted); }

/* ── Hamburger ───────────────────────────────────────────── */
.bca-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    padding: 9px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--body-bg);
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
}
.bca-hamburger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: transform .3s var(--ease), opacity .2s, width .25s;
    width: 100%;
}
.bca-hamburger span:nth-child(2) { width: 70%; }
.bca-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.bca-hamburger.is-open span:nth-child(2) { opacity: 0; }
.bca-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ───────────────────────────────────────── */
.bca-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,15,28,.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}
.bca-drawer-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
.bca-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(340px, 92vw);
    height: 100%;
    background: var(--surface);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .32s var(--ease);
    box-shadow: -8px 0 48px rgba(16,40,74,.14);
}
.bca-drawer.is-open { transform: translateX(0); }

.bca-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--surface);
    z-index: 1;
    flex-shrink: 0;
}
.bca-drawer-close {
    width: 32px; height: 32px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--body-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: background .2s, color .2s;
}
.bca-drawer-close:hover { background: var(--primary); color: #fff; }

.bca-drawer-search {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.bca-drawer-search input.form-control {
    width: 100%;
    height: 42px;
    padding: 0 14px !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 10px !important;
    font-size: 14px;
    background: var(--body-bg) !important;
    box-shadow: none !important;
}
.bca-drawer-search input.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(16,40,74,.07) !important;
}

.bca-drawer-label {
    padding: 14px 20px 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
}

.bca-drawer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: background .15s, color .15s;
    border-bottom: 1px solid rgba(16,40,74,.05);
    flex-shrink: 0;
}
.bca-drawer-item:hover { background: var(--primary-lt); color: var(--primary); }
.bca-drawer-item .la { font-size: 15px; color: var(--text-muted); transition: transform .25s; }
.bca-drawer-item.sub-open .la-angle-down { transform: rotate(180deg); }

.bca-drawer-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s var(--ease);
    background: var(--body-bg);
}
.bca-drawer-sub.is-open { max-height: 600px; }
.bca-drawer-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 36px;
    font-size: 13.5px;
    color: var(--text-muted);
    text-decoration: none !important;
    transition: color .15s, background .15s;
    border-bottom: 1px solid rgba(16,40,74,.04);
}
.bca-drawer-sub a::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
.bca-drawer-sub a:hover { color: var(--primary); background: var(--primary-lt); }

.bca-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-shrink: 0;
}
.bca-drawer-footer .btn-login-outline,
.bca-drawer-footer .btn-theme-primary {
    flex: 1;
    height: 44px !important;
    justify-content: center !important;
}

/* ── Show / hide breakpoints ─────────────────────────────── */
@media (max-width: 991px) {
    .bca-hamburger   { display: flex; }
    .bca-desktop-nav { display: none !important; }
    .bca-nav-actions { display: none !important; }
    .bca-topbar-marquee { display: none; }
}
@media (min-width: 992px) {
    .bca-hamburger      { display: none !important; }
    .bca-drawer         { display: none !important; }
    .bca-drawer-overlay { display: none !important; }
}

/* RTL */
[dir="rtl"] .categories-menu      { transform-origin: top right; left: auto; right: 0; }
[dir="rtl"] .level-sub            { left: auto; right: 200px; }
[dir="rtl"] .profile-dropdown-menu{ right: auto; left: 0; transform-origin: top left; }
[dir="rtl"] .bca-drawer           { right: auto; left: 0; transform: translateX(-100%); }
[dir="rtl"] .bca-drawer.is-open   { transform: translateX(0); }