.lang-switcher-container {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.current-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #E5E7EB; /* Bright Grey (Tailwind Gray-200) */
    padding: 0;
    border-radius: 50%;
    border: 2px solid #C9A84C !important;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.lang-switcher {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    background: #E5E7EB; /* Bright Grey (Tailwind Gray-200) */
    padding: 55px 0 15px 0; /* Padding top to clear the current-lang circle */
    border-radius: 30px;
    border: 2px solid #C9A84C;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    width: 44px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lang-switcher-container:hover .lang-switcher {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.8;
    width: 100%;
}

.lang-switcher a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-switcher a.active {
    display: none;
}

.lang-switcher img.flag, .current-lang img.flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0;
    border: 1px solid rgba(0,0,0,0.1);
}
