/* 1. Скрытие системного логотипа Helix */
#sp-header a.logo,
#sp-header .logo-image,
#sp-header .sp-default-logo {
    display: none !important;
}

/* 2. Вертикальное центрирование содержимого шапки */
#sp-header .row,
#sp-header .sp-column,
#sp-header .logo,
#sp-header .sp-module {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

/* 3. Блок кастомного брендинга */
.header-custom-brand {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: #1a1a1a;
    margin: auto 0 !important;
    padding: 6px 0;
}

.header-custom-brand .brand-icon {
    height: 44px !important;
    width: auto !important;
    display: block;
    flex-shrink: 0;
}

.header-custom-brand .brand-divider {
    width: 1.5px;
    height: 42px;
    background-color: #1a1a1a;
    margin: 0 14px;
}

.header-custom-brand .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.header-custom-brand .brand-title {
    font-size: 16px;
    font-weight: 500;
}

.header-custom-brand .brand-city {
    font-size: 15px;
    font-weight: 400;
}

/* 4. Адаптивность для планшетов и смартфонов (<= 991px) */
@media (max-width: 991px) {
    #sp-header {
        height: auto !important;
        min-height: 60px !important;
        padding: 8px 0 !important;
    }
    .header-custom-brand .brand-icon {
        height: 38px !important;
    }
    .header-custom-brand .brand-divider {
        height: 30px !important;
        margin: 0 10px !important;
    }
    .header-custom-brand .brand-title {
        font-size: 13px !important;
    }
    .header-custom-brand .brand-city {
        font-size: 12px !important;
    }
}