.lang-card {
    display: inline-block;
    min-width: 175px;
    border-radius: 12px;
    background: var(--card);
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 23, 42, 0.04);
    position: relative;
    z-index: 10;
}

/* trigger stays the same */
.lang-trigger {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 6px;;
    background: linear-gradient(180deg, #fff, #fbfdff);
    border: 1px solid #cfcfcf;
    width: 100%;
    text-align: left;
}

.lang-list {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    /* just below the trigger */
    width: 100%;
    max-height: 220px;
    /* limits size */
    overflow: auto;
    border-radius: 10px;
    box-shadow: 0 12px 36px rgba(2, 6, 23, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #fff;
    transform: translateY(-6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .14s ease, transform .14s ease, visibility .14s;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
    /* sit on top of other UI */
}

/* visible state */
.lang-list.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* items */
.lang-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    transition: background .12s;
}

.lang-item:hover {
    background: #f8fafc;
}

.lang-item.active {
    background: linear-gradient(90deg, rgba(11, 116, 218, 0.06), rgba(11, 116, 218, 0.02));
}

.lang-item:focus {
    outline: none;
    background: #eef6ff;
}

.lang-flag {
    width: 22px;
}

.lang-meta {
    font-size: 16px;
}

/* small responsive tweak */
@media (max-width:400px) {
    .lang-card {
        width: 100%;
    }
}

.mt-100 {
    margin-top: 100px;
}

.mb---100 {
    margin-bottom:-100px;
}

.ml-110 {
    margin-left:110px;
}
select {height: 50px !important;}