/* ============================================================
   header.css — Шапка сайта (логотип + языки)
   Все отступы контролируются ТОЛЬКО здесь
   ============================================================ */

/* Контейнер — перебиваем main.css */
.language-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0.4em 0 0.4em 0;
}

/* Убираем padding из main.css */
.language-switcher {
    padding: 0 !important;
}

/* Homepage: убираем зазор до карусели */
#site-header + #header.alt {
    margin-top: -0.8em !important;
}

/* Catalog: убираем зазор до info-section */
#site-header + .info-section {
    margin-top: 0 !important;
}

/* Логотип + название */
.site-header-logo {
    display: flex;
    align-items: center;
    gap: 0.6em;
    border-bottom: none !important;
    text-decoration: none !important;
}

.site-header-logo img {
    max-height: 55px;
    width: auto;
    display: block;
}

.site-header-title {
    font-size: 0.95em;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Мобильная адаптация */
@media screen and (max-width: 736px) {
    .language-container {
        padding: 0.4em 1em;
    }

    .site-header-logo img {
        max-height: 42px;
    }

    .site-header-title {
        font-size: 0.8em;
    }
}
