.jf-store-switch {
    display: flex;
    justify-content: flex-end;

    width: min(100%, 1220px);
    padding: 14px 20px 0;
    margin: 0 auto;
}

.jf-store-switch a {
    display: inline-flex;
    align-items: center;

    min-height: 40px;
    padding: 9px 14px;
    gap: 9px;

    color: #111;
    background: #fff;
    border: 1px solid #111;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 180ms ease,
        background-color 180ms ease;
}

.jf-store-switch a:hover,
.jf-store-switch a:focus-visible {
    color: #fff;
    background: #111;
}

@media (max-width: 767px) {
    .jf-store-switch {
        justify-content: stretch;
        padding: 12px 15px 0;
    }

    .jf-store-switch a {
        justify-content: space-between;

        width: 100%;
        min-height: 44px;
    }
}
