/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE. ***************/
/*************** CUSTOM FLOATING LANGUAGE SWITCHER ***************/
/* Финальный стиль переключателя */
.custom-lang-float {
    position: fixed !important;
    top: 220px !important; /* Гарантированно ниже корзины Flatsome */
    right: 20px !important;
    bottom: auto !important; /* ОТРЫВАЕМ ОТ НИЗА (от Вайбера) */
    left: auto !important;
    z-index: 999999 !important;
    background-color: #222222 !important; /* Темный фон */
    width: 46px !important;
    height: 46px !important;
    border-radius: 23px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5) !important;
    border: 1px solid #444 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    overflow: hidden !important;
    transition: all 0.3s ease-in-out !important;
    cursor: pointer !important;
}

/* Скрытие при скролле */
.custom-lang-float.lang-hidden-scroll {
    transform: translateX(100px) !important;
    opacity: 0 !important;
}

.lang-active, .lang-hidden {
    min-height: 46px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 13px !important;
    color: #ffffff !important;
}

.lang-hidden a {
    color: #999 !important;
    text-decoration: none !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.custom-lang-float:hover {
    height: 92px !important; /* Раскрываем для показа второго языка */
}

/* Мобильная версия - принудительное отображение */
@media screen and (max-width: 768px) {
    .custom-lang-float {
        display: flex !important; /* Убеждаемся, что видна */
        top: 180px !important; 
        right: 15px !important;
    }
}
