:root {
    --btn-color: #9E7F3A;
}

.zenchef-btn_link {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    background-color: var(--btn-color);
    color: #fff;
    border-radius: 10px;
    width: 250px;
    height: 50px;
    padding: 0 10px;
}

.zenchef-btn__before {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.zenchef-btn_link-text {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.zenchef-btn_link:hover,
.zenchef-btn_link:focus {
    background-color: #fff;
    color: var(--btn-color);
}