.pg-site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(11, 31, 59, 0.08);
    z-index: 1000;
    padding: 9px 0;
}

.pg-site-header__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pg-site-header__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pg-site-header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: #0b1f3b;
    text-decoration: none;
}

.pg-site-header__logo-img {
    width: 41px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.pg-site-header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pg-site-header__logo-text span {
    font-size: 1.02rem;
    font-weight: 700;
}

.pg-site-header__nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pg-site-header__link {
    font-weight: 500;
    color: #2b2b2b;
    transition: all 0.3s ease;
    position: relative;
    padding: 3px 0;
    font-size: 0.95rem;
    text-decoration: none;
}

.pg-site-header__link:hover {
    color: #d25614;
}

.pg-site-header__link.is-active {
    color: #d25614;
}

.pg-site-header__link--lk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 212px;
    background-color: #f3f3f3;
    padding: 6px 13px;
    border-radius: 12px;
    white-space: nowrap;
}

.pg-site-header__link--lk .partner-link-text {
    transition: opacity 0.18s ease;
}

.pg-site-header__link--lk i {
    transition: opacity 0.18s ease;
}

.pg-site-header__link--lk.partner-link-loading .partner-link-text,
.pg-site-header__link--lk.partner-link-loading i {
    opacity: 0;
}

.pg-site-header__link--lk.partner-link-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(50% + 10px);
    width: 14px;
    height: 14px;
    margin-top: -7px;
    margin-left: -7px;
    border: 2px solid rgba(11, 31, 59, 0.18);
    border-top-color: #2b2b2b;
    border-radius: 50%;
    animation: pg-partner-link-spin 0.75s linear infinite;
}

.pg-site-header__link--lk:hover {
    background-color: #e9ecef;
    color: #2b2b2b;
}

.pg-site-header__burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.pg-site-header__burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0b1f3b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.pg-site-header__offset {
    height: 74px;
}

@keyframes pg-partner-link-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .pg-site-header__nav {
        display: none;
    }

    .pg-site-header__burger {
        display: flex;
    }

    .pg-site-header__nav.is-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .pg-site-header__nav-list {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .pg-site-header__brand {
        gap: 8px;
    }

    .pg-site-header__logo-img {
        width: 36px;
        height: 42px;
    }

    .pg-site-header__logo-text span {
        font-size: 0.92rem;
    }
}
