header {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0px 5px 5px 0 rgba(0,0,0,.02);

    position: relative;
    z-index: 1;
    
    .logo {
        display: flex;
        align-items: center;
        line-height: 0;

        img {
            height: 36px;
            width: auto;
            display: block;
        }
    }
    
    .icon {
        box-sizing: border-box;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        background: #fff;
        border: 1px solid #e2e6eb;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .icon.lang {
        font-size: 13px;
        font-weight: 700;
        color: #222;
        letter-spacing: 0.02em;
    }
    
    .icon img {
        width: 25px;
        height: 25px;
        display: block;
        object-fit: contain;
    }
    
    .resort {
        flex: 1;
        min-width: 0;
        text-align: center;

        h4 {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
        }
    
        div {
            font-size: 13px;
            color: #717171;
            margin-top: 3px;
            line-height: 1.3;
        }
    }
}