.site-header {
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 64px;
    width: 100%;
}

/* Logo */

.site-logo {
    display: block;
    flex-shrink: 0;
}

.site-logo img {
    display: block;
    width: 143px;
    height: 41px;
}

/* Navigation */

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 44px;
    align-items: center;
}

/* Hide submenus on desktop */
.main-navigation .sub-menu {
    display: none;
}

.main-navigation a {
    font-family: var(--font-neo);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-white);
    white-space: nowrap;
    text-decoration: none;
}

/* Header Actions */

.header-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.lang-icon img {
    width: 100%;
    height: 100%;
}

.lang-switcher span {
    font-family: var(--font-neo);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-white);
    white-space: nowrap;
}

.btn-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-neo);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    width: 200px;
    height: 44px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.burger-btn img {
    width: 40px;
    height: 40px;
    display: block;
}

/* Responsive */

@media (max-width: 1170px) {
    .site-header {
        padding: 12px 16px;
    }

    .site-logo img {
        width: 126px;
        height: 36px;
    }

    .main-navigation {
        display: none;
    }

    .btn-partner {
        display: none;
    }

    .burger-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 1171px) {
    .site-header {
        position: relative;
    }
}
