/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
.my-lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}
.my-lang-switcher .lang-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #f3f3f3;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 14px;
}
.my-lang-switcher .lang-item:hover {
    background: #0073aa;
    color: #fff;
}
.my-lang-switcher .lang-item.active {
    background: #0073aa;
    color: #fff;
    font-weight: bold;
}
.my-lang-switcher .flag {
    width: 18px;
    height: auto;
    display: block;
    border-radius: 2px;
}
