/* Общие стили для шапки сайта */

.site-header {
    padding: 12px 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.site-header-container {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.site-header .custom-logo {
    max-height: 60px;
    width: auto;
    height: auto;
}

.site-logo-link {
    text-decoration: none;
    color: inherit;
}

.site-title {
    font-family: 'Days One', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    color: #008692;
}

/* Header inner для всех страниц */
.header-inner {
    padding: 12px 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    max-width: 1080px;
    margin: 0 auto;
}

.header-inner .site-header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Для админского header с кнопкой выхода */
.header-inner .site-header-container .header-inner-right {
    margin-left: auto;
}

.header-inner-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-admin-label {
    font-family: 'Days One', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #008692;
}

.header-logout-button {
    background: #83749F;
    padding: 5px 12px;
    border-radius: 9px;
    border: none;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-logout-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.header-logout-arrow {
    width: 29px;
    height: 20px;
    border-radius: 8px 4px 4px 8px;
    background: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-logout-arrow svg {
    width: 20px;
    height: 12px;
}

/* Ссылка "Личный кабинет" */
.header-cabinet-link {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #008692;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cabinet-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Вход для гостей (юрлицо / агент) */
.header-guest-logins {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 8px;
}

.header-login-type-link {
    font-size: 16px;
    white-space: nowrap;
}

.header-guest-sep {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-size: 16px;
    color: #008692;
    opacity: 0.45;
    user-select: none;
}

@media (max-width: 640px) {
    .header-guest-sep {
        display: none;
    }

    .header-guest-logins {
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
    }
}
