.lang-dropdown-custom {
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
    min-width: 110px;
    height: 32px;
    font-size: 15px;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    margin: 0 0 0 12px;
    z-index: 1200;
}
.lang-dropdown-custom .lang-current {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 0 12px 0 8px;
    height: 32px;
    font-size: 15px;
    color: #222;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: box-shadow 0.15s, border 0.15s;
    gap: 8px;
}
.lang-dropdown-custom .lang-current:hover,
.lang-dropdown-custom.open .lang-current {
    border: 1px solid #2563eb;
    box-shadow: 0 4px 16px rgba(37,99,235,0.08);
}
.lang-dropdown-custom .lang-current img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    margin-right: 0;
    border-radius: 2px;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
}

.lang-dropdown-custom .lang-current span {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    line-height: 1;
}
.lang-dropdown-custom .lang-arrow {
    margin-left: 10px;
    font-size: 13px;
    color: #134691;
    margin-top: 1px;
    order: 2;
}
.lang-dropdown-custom .lang-list {
    display: none;
    position: absolute;
    right: 0;
    top: 110%;
    background: #fff;
    min-width: 150px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    z-index: 1000;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    animation: fadeInLang 0.18s;
}
@keyframes fadeInLang {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.lang-dropdown-custom.open .lang-list {
    display: block;
}
.lang-dropdown-custom .lang-list li {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 8px 18px 8px 14px;
    font-size: 14px;
    color: #222;
    cursor: pointer;
    white-space: nowrap;
    background: #fff;
    transition: background 0.13s, color 0.13s;
    border: none;
    gap: 8px;
}
.lang-dropdown-custom .lang-list li:hover {
    background: #f0f6ff;
    color: #1c2539;
}
.lang-dropdown-custom .lang-list img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    margin-right: 0;
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
}
.lang-dropdown-custom .lang-list span {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
}