/* Language Toggle Styles */
.language-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-toggle {
    display: flex;
    gap: 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 50px;
    padding: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-toggle:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 45px;
    text-decoration: none;
    color: #000 !important;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.lang-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 45px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.lang-btn:hover {
    color: #007bff;
    transform: translateY(-2px);
}

.lang-btn.active {
    color: white !important;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.lang-btn.active::before {
    left: 0;
}

.lang-icon {
    font-size: 16px;
    display: inline-block;
}

.lang-text {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .lang-icon {
        font-size: 14px;
    }

    .language-toggle {
        padding: 3px;
    }
}

@media (max-width: 480px) {
    .lang-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .lang-text {
        /* display: none; */
    }

    .lang-icon {
        font-size: 16px;
    }
}
