#site-header {
    #logo {
        width: 140px;
        height: 75px;
        background: var(--wp--preset--color--red);
    }
    .menu-item {
        border-width: 0 1px;
        border-style: solid;
        border-color: var(--wp--preset--color--red);
        font-weight: 700;
        &&:not(:first-child) {
            margin-left: -1px;
        }
    }
    input[type="search"] {
        border-width: 0 0 1px 0 !important;
        border-style: solid !important;
        border-color: inherit !important;
        border-radius: 0 !important;
        font-weight: bold;
        &&::placeholder {
            color: inherit !important;
            font-weight: bold;
            opacity: 0.5;
        }
        &&:placeholder-shown:not(:focus) {
            border-width: 0 !important;
        }
        &&:not(:placeholder-shown),
        &&:focus {
            + button {
                display: flex;
            }
        }
        + button {
            display: none;
            font-weight: bold;
        }
    }
    @media (max-width: 1079px) {
        &&:has(#header-menu.active) > *:first-child {
            grid-row-gap: 0 !important;
        }
        .menu-item {
            border-width: 0;
            margin-left: 0;
        }
    }
}

#language-toggle {
    border-width: 0 0 0 1px;
    border-color: var(--wp--preset--color--red);
    border-style: solid;
    select {
        font-size: var(--wp--preset--font-size--x-large);
        font-weight: 700;
        color: var(--wp--preset--color--red);
        border: none !important;
        text-transform: uppercase;
        -moz-appearance:none; /* Firefox */
        -webkit-appearance:none; /* Safari and Chrome */
        appearance:none;
        background-image: url('../icons/caret.svg');
        background-size: var(--one-spacer);
        background-repeat: no-repeat;
        background-position: center right;
        background-color: transparent;
        padding-right: var(--two-spacer);
    }
}
body.home #language-toggle {
    border: none !important;
}