.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    background-color: var(--white);
}

.header>.app-container {
    position: static;
}

.header-wrapper {
    padding: clamp(12px, 1.25vw, 20px) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-menu {
    display: flex;
    flex-direction: row;
    gap: clamp(10px, 1.25vw, 20px);
}

.header-menu__item {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(14px, 0.94vw, 18px);
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--gray-100);
    text-decoration: none;
    cursor: pointer;
}

.header-menu__item.has-dropdown,
.header-menu__item.has-dropdown:hover,
.header-menu__item.has-dropdown:focus,
.header-menu__item.has-dropdown:active,
.header-menu__item.has-dropdown.active {
    transform: none !important;
    opacity: 1 !important;
}

.header-other-items {
    display: flex;
    flex-direction: row;
    gap: clamp(12px, 1.25vw, 24px);
    align-items: center;
}

.header-curse {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(14px, 0.94vw, 18px);
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--gray-100);
}

.header-search {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(14px, 0.94vw, 18px);
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--gray-100);
    cursor: pointer;
}

.language .lang-button{
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(14px, 0.94vw, 18px);
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: none;
    color: var(--gray-100);
    cursor: pointer;
    text-decoration: none;
}

.header-by-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(14px, 0.94vw, 18px);
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--white);
    padding: clamp(10px, 0.83vw, 16px) clamp(16px, 1.66vw, 32px);
    background: var(--gray-100);
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 100%);
    background-color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: none;
    z-index: 99;
    border-top: 1px solid #E5E5E7;
    overflow-y: auto;
}

.mega-dropdown.open {
    display: block;
}

.mega-dropdown__wrapper {
    display: flex;
    flex-direction: row;
    padding: clamp(20px, 2.08vw, 40px) 0 clamp(30px, 3.12vw, 60px) 0;
    height: 100%;
    box-sizing: border-box;
}

.mega-dropdown__categories {
    width: clamp(240px, 19.8vw, 380px);
    flex-shrink: 0;
    padding-right: clamp(20px, 2.08vw, 40px);
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.5vw, 48px);
}

.mega-dropdown__categories.no-transition .mega-dropdown__category-item {
    transition: none !important;
}

.mega-dropdown__category-item {
    font-family: PP Neue Montreal, sans-serif;
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 400;
    line-height: 140%;
    color: var(--gray-100);
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease, margin-bottom 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.mega-dropdown__category-item:hover {
    color: var(--gray-60);
}

.mega-dropdown__category-item.active {
    color: var(--gray-100);
    font-style: italic;
}

.mega-dropdown__subcategories {
    flex-grow: 1;
    position: relative;
}

.mega-dropdown__subcategory-group {
    position: absolute;
    top: 0;
    left: clamp(30px, 3.12vw, 60px);
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.08vw, 40px) clamp(30px, 3.12vw, 60px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s;
}

.mega-dropdown__subcategory-group::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(-1 * clamp(30px, 3.12vw, 60px));
    width: 1px;
    background-color: #E5E5E7;
}

.mega-dropdown__subcategory-group.active {
    opacity: 1;
    visibility: visible;
}

.mega-dropdown__sub-column {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 3.33vw, 64px);
}

.mega-dropdown__sub-item {
    display: block;
    text-decoration: none;
    font-family: PP Neue Montreal, sans-serif;
    color: var(--gray-100);
    transition: color 0.2s ease;
    text-align: left;
}

.mega-dropdown__sub-item.title {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(14px, 0.83vw, 16px);
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--gray-100);

    margin-bottom: 4px;
}

.mega-dropdown__sub-item.desc {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(14px, 0.83vw, 16px);
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--gray-100);
}

.mega-dropdown__sub-item:hover {
    color: var(--gray-60);
}

.header-menu__item.has-dropdown svg {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-menu__item.has-dropdown.active svg {
    transform: rotate(180deg);
}

.courses-dropdown__wrapper {
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 2.08vw, 40px) 0 clamp(30px, 3.12vw, 60px) 0;
    box-sizing: border-box;
}

.courses-dropdown__section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.courses-dropdown__section-title {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    margin-bottom: clamp(20px, 2.08vw, 40px);
    font-size: 14px;
    leading-trim: NONE;
    line-height: 120%;
    text-align: left;
    letter-spacing: 3%;
    text-transform: uppercase;
    color: var(--gray-90);
}

.courses-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(40px, 4.16vw, 80px) clamp(30px, 3.12vw, 60px);
}

.courses-dropdown__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(18px, 1.25vw, 24px);
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--gray-100);
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-align: left;
    padding-right: 20px;
}

.courses-dropdown__item svg {
    transition: opacity 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
    transform: rotate(0)!important;
}

.courses-dropdown__item:hover {
    opacity: 0.7;
}

.courses-dropdown__item:hover svg {
    opacity: 1;
    transform: translateX(4px);
}

.courses-dropdown__separator {
    height: 1px;
    background-color: #E5E5E7;
    margin: clamp(20px, 2.08vw, 40px) 0;
    width: 100%;
}

.header-burger {
    display: none;
}

.mobile-menu-drawer {
    display: none;
}

@media (max-width: 1024px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
        background-color: var(--white);
        border-bottom: 1px solid var(--gray-20);
        box-sizing: border-box;
    }

    .header-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: clamp(10px, 1.4vw, 14px) 0;
        gap: 12px;
    }

    .header-logo {
        display: flex;
        align-items: center;
        z-index: 1002;
    }

    .header-logo svg {
        width: clamp(68px, 8vw, 84px);
        height: auto;
    }

    .header-menu {
        display: none !important;
    }

    .header-other-items {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: clamp(10px, 2vw, 16px);
        z-index: 1002;
    }

    .header-chat,
    .header-curse,
    .header-search,
    .language {
        display: none !important;
    }

    .header-by-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: PP Neue Montreal, sans-serif;
        font-weight: 500;
        font-size: clamp(13px, 1.4vw, 15px);
        line-height: 100%;
        color: var(--white);
        background: var(--gray-100);
        padding: clamp(8px, 1.1vw, 10px) clamp(14px, 2vw, 20px);
        border-radius: 4px;
        text-decoration: none;
        cursor: pointer;
        border: none;
        white-space: nowrap;
        transition: opacity 0.2s ease, background-color 0.2s ease;
    }

    .header-by-btn:hover,
    .header-by-btn:active {
        opacity: 0.85;
    }

    /* Mobile menu burger button */
    .header-burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 16px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
        -webkit-tap-highlight-color: transparent;
    }

    .header-burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--gray-100);
        border-radius: 2px;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        transform-origin: center;
    }

    .header-burger.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header-burger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .header-burger.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile Menu Drawer - LIGHT THEME & ALWAYS UNDER HEADER */
    .mobile-menu-drawer {
        position: fixed;
        top: var(--header-height, 58px);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        max-height: calc(100dvh - var(--header-height, 58px));
        background-color: var(--white);
        color: var(--gray-100);
        z-index: 999;
        display: flex;
        flex-direction: column;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-top: 1px solid var(--gray-20);
        box-sizing: border-box;
    }

    .mobile-menu-drawer.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-drawer > .app-container {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        min-height: 100%;
    }

    .mobile-menu__inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
        min-height: 100%;
        padding: 0 0 clamp(40px, 8vw, 80px) 0;
        box-sizing: border-box;
    }

    /* Top Search Bar */
    .mobile-menu-drawer .mobile-menu__top {
        padding: clamp(14px, 2vw, 18px) 0 clamp(12px, 1.8vw, 16px);
        box-sizing: border-box;
    }

    .mobile-menu-drawer .mobile-search-form {
        width: 100%;
        margin: 0;
    }

    .mobile-menu-drawer .mobile-search-bar {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        background-color: var(--gray-10);
        border: 1px solid var(--gray-20);
        border-radius: 8px;
        padding: 10px 14px;
        box-sizing: border-box;
        transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .mobile-menu-drawer .mobile-search-bar:focus-within {
        background-color: var(--white);
        border-color: var(--gray-60);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .mobile-menu-drawer .mobile-search-icon {
        flex-shrink: 0;
        color: var(--gray-60);
    }

    .mobile-menu-drawer .mobile-search-input {
        width: 100%;
        background: transparent;
        border: none;
        outline: none;
        font-family: PP Neue Montreal, sans-serif;
        font-size: 15px;
        font-weight: 400;
        color: var(--gray-100);
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-drawer .mobile-search-input::placeholder {
        color: var(--gray-60);
    }

    /* Main Accordions */
    .mobile-menu-drawer .mobile-menu__body {
        flex-grow: 1;
    }

    .mobile-menu-drawer .fm-accordions {
        border-top: 1px solid var(--gray-20);
    }

    .mobile-menu-drawer .fm-item {
        border-bottom: 1px solid var(--gray-20);
    }

    .mobile-menu-drawer .fm-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        padding: clamp(14px, 2vw, 18px) 0;
        cursor: pointer;
        color: var(--gray-100);
        text-align: left;
        font-family: PP Neue Montreal, sans-serif;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-drawer .fm-title {
        font-size: clamp(15px, 1.8vw, 17px);
        font-weight: 500;
        line-height: 120%;
        color: var(--gray-100);
    }

    .mobile-menu-drawer .fm-chevron {
        flex-shrink: 0;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
        color: var(--gray-60);
    }

    .mobile-menu-drawer .fm-item.is-open > .fm-header .fm-chevron {
        transform: rotate(180deg);
        color: var(--gray-100);
    }

    .mobile-menu-drawer .fm-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
        overflow: hidden;
        visibility: hidden;
    }

    .mobile-menu-drawer .fm-item.is-open > .fm-content {
        grid-template-rows: 1fr;
        visibility: visible;
        overflow: visible;
    }

    .mobile-menu-drawer .fm-inner {
        min-height: 0;
        overflow: hidden;
        padding: 0;
        transition: padding 0.3s ease;
    }

    .mobile-menu-drawer .fm-item.is-open > .fm-content > .fm-inner {
        padding-bottom: 12px;
        overflow: visible;
    }

    .mobile-menu-drawer .fm-sub-list {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .mobile-menu-drawer .fm-sub-item {
        border-bottom: 1px solid #F0F0F2;
    }

    .mobile-menu-drawer .fm-sub-item:last-child {
        border-bottom: none;
    }

    .mobile-menu-drawer .fm-sub-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        padding: clamp(10px, 1.6vw, 12px) 0 10px 10px;
        cursor: pointer;
        color: var(--gray-90);
        text-align: left;
        font-family: PP Neue Montreal, sans-serif;
        -webkit-tap-highlight-color: transparent;
        transition: color 0.2s ease;
    }

    .mobile-menu-drawer .fm-sub-item.is-open > .fm-sub-header {
        color: var(--gray-100);
        font-weight: 500;
    }

    .mobile-menu-drawer .fm-sub-title {
        font-size: clamp(13px, 1.5vw, 15px);
        font-weight: 450;
        line-height: 120%;
        color: var(--gray-90);
    }

    .mobile-menu-drawer .fm-sub-chevron {
        flex-shrink: 0;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        color: var(--gray-60);
    }

    .mobile-menu-drawer .fm-sub-item.is-open > .fm-sub-header .fm-sub-chevron {
        transform: rotate(180deg);
        color: var(--gray-100);
    }

    .mobile-menu-drawer .fm-sub-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
        overflow: hidden;
        visibility: hidden;
    }

    .mobile-menu-drawer .fm-sub-item.is-open > .fm-sub-content {
        grid-template-rows: 1fr;
        visibility: visible;
        overflow: visible;
    }

    .mobile-menu-drawer .fm-sub-inner {
        min-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0 0 0 16px;
        border-left: 2px solid transparent;
        margin-left: 10px;
        margin-bottom: 0;
        transition: padding 0.3s ease, margin 0.3s ease, border-color 0.3s ease;
    }

    .mobile-menu-drawer .fm-sub-item.is-open > .fm-sub-content > .fm-sub-inner {
        padding: 4px 0 12px 16px;
        margin-bottom: 6px;
        border-left: 2px solid var(--gray-20);
        overflow: visible;
    }

    .mobile-menu-drawer .fm-link {
        font-size: clamp(13px, 1.4vw, 14px);
        font-weight: 400;
        color: var(--gray-80);
        text-decoration: none;
        line-height: 140%;
        transition: color 0.2s ease, transform 0.15s ease;
        display: block;
        padding: 3px 0;
    }

    .mobile-menu-drawer .fm-link-desc {
        font-size: 12px;
        font-weight: 400;
        color: var(--gray-60);
        display: inline;
    }

    .mobile-menu-drawer .fm-link:hover,
    .mobile-menu-drawer .fm-link:active {
        color: var(--gray-100);
        transform: translateX(2px);
    }

    .mobile-menu-drawer .fm-item--direct {
        border-bottom: 1px solid var(--gray-20);
    }

    .mobile-menu-drawer .fm-direct-link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: clamp(14px, 2vw, 18px) 0;
        font-size: clamp(15px, 1.8vw, 17px);
        font-weight: 500;
        line-height: 120%;
        color: var(--gray-100);
        text-decoration: none;
        font-family: PP Neue Montreal, sans-serif;
        transition: color 0.2s ease, transform 0.15s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-drawer .fm-direct-link:hover,
    .mobile-menu-drawer .fm-direct-link:active {
        color: var(--gray-80);
        transform: translateX(2px);
    }

    .mobile-menu-drawer .fm-links-list {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 4px 0 12px 10px;
    }

    .mobile-menu-drawer .fm-links-list .fm-link {
        font-size: clamp(14px, 1.6vw, 15px);
        padding: 8px 0;
        border-bottom: 1px solid #F5F5F7;
    }

    .mobile-menu-drawer .fm-links-list .fm-link:last-child {
        border-bottom: none;
    }

    /* Contacts in Drawer - Simple & Clean */
    .mobile-menu-drawer .fm-contacts-simple {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 4px 0 14px 10px;
    }

    .mobile-menu-drawer .fm-contact-row {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-menu-drawer .fm-contact-label {
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--gray-60);
        line-height: 120%;
    }

    .mobile-menu-drawer .fm-contact-val {
        font-size: 15px;
        font-weight: 500;
        color: var(--gray-100);
        text-decoration: none;
        line-height: 130%;
        transition: color 0.2s ease;
    }

    .mobile-menu-drawer .fm-contact-val:hover {
        color: var(--gray-80);
    }

    .mobile-menu-drawer .fm-contact-sub {
        font-size: 12px;
        font-weight: 400;
        color: var(--gray-60);
    }

    .mobile-menu-drawer .fm-contact-text {
        font-size: 14px;
        font-weight: 400;
        color: var(--gray-80);
        line-height: 130%;
    }

    .mobile-menu-drawer .fm-contact-locations {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-top: 8px;
        margin-top: 4px;
        border-top: 1px solid var(--gray-20);
    }

    .mobile-menu-drawer .fm-contact-loc {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-menu-drawer .fm-contact-city-badge {
        font-size: 12px;
        font-weight: 600;
        color: var(--gray-100);
        background-color: var(--gray-10);
        border: 1px solid var(--gray-20);
        padding: 2px 8px;
        border-radius: 4px;
        flex-shrink: 0;
    }

    .mobile-menu-drawer .fm-contact-addr {
        font-size: 13px;
        font-weight: 400;
        color: var(--gray-80);
        line-height: 130%;
    }

    /* Drawer Footer Utilities - LIGHT THEME */
    .mobile-menu-drawer .mobile-menu__footer {
        margin-top: auto;
        padding: clamp(16px, 3vw, 24px) 0 0 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        box-sizing: border-box;
    }

    .mobile-menu-drawer .mobile-menu__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .mobile-menu-drawer .mobile-util-card {
        background-color: var(--gray-10);
        border: 1px solid var(--gray-20);
        border-radius: 8px;
        padding: 12px 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        box-sizing: border-box;
        transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .mobile-menu-drawer .mobile-chat-card:hover,
    .mobile-menu-drawer .mobile-chat-card:active {
        background-color: #F0F0F2;
        border-color: var(--gray-60);
    }

    .mobile-menu-drawer .mobile-util-icon {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        border-radius: 6px;
        background-color: var(--white);
        border: 1px solid var(--gray-20);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-90);
    }

    .mobile-menu-drawer .mobile-util-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
        overflow: hidden;
    }

    .mobile-menu-drawer .mobile-util-label {
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--gray-60);
        line-height: 110%;
    }

    .mobile-menu-drawer .mobile-curse-val {
        font-size: 15px;
        font-weight: 600;
        color: var(--gray-100);
        line-height: 120%;
        font-family: PP Neue Montreal, sans-serif;
    }

    .mobile-menu-drawer .mobile-chat-val {
        font-size: 13px;
        font-weight: 500;
        color: var(--gray-100);
        line-height: 120%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Language Switcher */
    .mobile-menu-drawer .mobile-lang-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 14px;
        background-color: var(--gray-10);
        border: 1px solid var(--gray-20);
        border-radius: 8px;
        box-sizing: border-box;
    }

    .mobile-menu-drawer .mobile-lang-label {
        font-size: 13px;
        font-weight: 500;
        color: var(--gray-80);
    }

    .mobile-menu-drawer .mobile-lang-switch {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .mobile-menu-drawer .mobile-lang-btn {
        font-size: 13px;
        font-weight: 600;
        color: var(--gray-60);
        text-decoration: none;
        padding: 4px 10px;
        border-radius: 4px;
        transition: all 0.2s ease;
        line-height: 110%;
    }

    .mobile-menu-drawer .mobile-lang-btn.is-active {
        color: var(--white);
        background-color: var(--gray-100);
    }

    .mobile-menu-drawer .mobile-lang-btn:not(.is-active):hover {
        color: var(--gray-100);
    }

    .mobile-menu-drawer .mobile-lang-divider {
        font-size: 12px;
        color: var(--gray-60);
    }
}
