.site-header {
    background-color: var(--color--white);
    position: sticky;
    top: 0;
    z-index: 1;
}

.site-header ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.site-header button {
    background-color: transparent;
    border: none;
    padding: 0;
}

.site-header .content {
    align-items: center;
    display: grid;
    font-weight: 500;
    grid-template-columns: 1fr 145px 1fr;
    height: 81px;
}

.site-header .menu-button {
    display: none;
}

.site-header .content ul:first-of-type li:not(:last-child) {
    margin-right: 36px;
}

.site-header img {
    display: block;
}

.site-header .content ul:last-of-type {
    justify-content: flex-end;
    padding-top: 4px;
}

.site-header .content ul:last-of-type a,
.site-header .content ul:last-of-type button {
    align-items: center;
    display: flex;
}

.site-header .content ul:last-of-type li:first-child {
    margin-right: 33px;
}

.site-header .content ul:last-of-type li:first-child svg {
    margin-left: 11px;
}

.site-header .content ul:last-of-type li:nth-child(2) {
    margin-right: 32px;
    padding-right: 33px;
    position: relative;
    top: 1px;
}

.site-header .content ul:last-of-type li:nth-child(2) svg {
    margin-left: 12px;
}

.site-header .content ul:last-of-type li:nth-child(2) .quantity-info {
    align-items: center;
    background-color: var(--color--blue);
    border-radius: 50%;
    box-sizing: border-box;
    color: var(--color--white);
    display: flex;
    font-size: 13px;
    font-weight: 700;
    height: 25px;
    justify-content: center;
    padding-bottom: 1px;
    position: absolute;
    right: 0;
    top: -2px;
    min-width: 25px;
}

.site-header .content ul:last-of-type li:last-child {
    margin-right: -2px;
}

.site-header .navigation {
    background-color: var(--color--blue);
    color: var(--color--white);
    font-family: "Merriweather";
    font-weight: 700;
}

.site-header .navigation .inner {
    align-items: center;
    display: flex;
    justify-content: center;
}

.site-header .navigation a {
    align-items: center;
    display: flex;
    height: 56px;
    padding: 0 20px;
}
