/* Dil Değiştirici Stilleri */

.lang-switcher {
    position: relative;
}

.lang-switcher .navBtn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.lang-switcher .navBtn:hover {
    color: #1a6cff;
}
.lang-switcher .navBtn.active {
    color: #1a6cff;
}

.lang-switcher .navBtn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.lang-switcher .navBtn:hover svg {
    fill: var(--blueLight);
    transform: translateX(5px);
}

.lang-switcher .navBtn.active svg {
    transform: rotate(-180deg);
    fill: var(--blueLight);
}

/* Dropdown */
.lang-dropdown {
    position: absolute;
    top: 64px;
    right: 0;
    min-width: 130px;
    opacity: 0;
    border-radius: 0px 0px 20px 20px;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, .15);
}

/*.lang-switcher:hover .lang-dropdown {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    transform: translateY(0);*/
/*}*/

.lang-dropdown .dropBox {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lang-dropdown .dropBoxInside {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    width: 100%;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
}

.lang-option:hover {
    background: rgba(26, 108, 255, 0.2);
}